- reverted back tables for instructor manager;
This commit is contained in:
@@ -5,8 +5,9 @@ import { __ } from '@wordpress/i18n';
|
||||
import { useStore } from '../../store';
|
||||
|
||||
// components
|
||||
import MieDomandeTableInstructorManagerAsync
|
||||
from '../DashboardInstructorManager/components/MieDomandeTableInstructorManagerAsync';
|
||||
//import MieDomandeTableInstructorManagerAsync from '../DashboardInstructorManager/components/MieDomandeTableInstructorManagerAsync';
|
||||
import InstructorManagerMieDomandeTable
|
||||
from '../DashboardInstructorManager/components/InstructorManagerMieDomandeTable';
|
||||
|
||||
const DomandeMieInstructorManager = () => {
|
||||
const userData = useStore().main.userData();
|
||||
@@ -21,14 +22,16 @@ const DomandeMieInstructorManager = () => {
|
||||
|
||||
<div className="appPageSection">
|
||||
<h2>{__('Nuove domande da valutare', 'gepafin')}</h2>
|
||||
<MieDomandeTableInstructorManagerAsync statuses={['AWAITING']} userId={userData.id}/>
|
||||
{/*<MieDomandeTableInstructorManagerAsync statuses={['AWAITING']} userId={userData.id}/>*/}
|
||||
<InstructorManagerMieDomandeTable statuses={['AWAITING']} userId={userData.id}/>
|
||||
</div>
|
||||
|
||||
<div className="appPage__spacer"></div>
|
||||
|
||||
<div className="appPageSection">
|
||||
<h2>{__('Coda di lavoro', 'gepafin')}</h2>
|
||||
<MieDomandeTableInstructorManagerAsync statuses={['OPEN', 'SOCCORSO']} userId={userData.id}/>
|
||||
{/*<MieDomandeTableInstructorManagerAsync statuses={['OPEN', 'SOCCORSO']} userId={userData.id}/>*/}
|
||||
<InstructorManagerMieDomandeTable statuses={['OPEN', 'SOCCORSO']} userId={userData.id}/>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user