- updated tables 'coda di lavoro';

This commit is contained in:
Vitalii Kiiko
2025-03-19 17:23:43 +01:00
parent 033994b759
commit 42f0be4bba
6 changed files with 578 additions and 6 deletions

View File

@@ -5,8 +5,8 @@ import { __ } from '@wordpress/i18n';
import { useStore } from '../../store';
// components
import InstructorManagerMieDomandeTable
from '../DashboardInstructorManager/components/InstructorManagerMieDomandeTable';
import MieDomandeTableInstructorManagerAsync
from '../DashboardInstructorManager/components/MieDomandeTableInstructorManagerAsync';
const DomandeMieInstructorManager = () => {
const userData = useStore().main.userData();
@@ -21,14 +21,14 @@ const DomandeMieInstructorManager = () => {
<div className="appPageSection">
<h2>{__('Nuove domande da valutare', 'gepafin')}</h2>
<InstructorManagerMieDomandeTable statuses={['AWAITING']} userId={userData.id}/>
<MieDomandeTableInstructorManagerAsync statuses={['AWAITING']} userId={userData.id}/>
</div>
<div className="appPage__spacer"></div>
<div className="appPageSection">
<h2>{__('Coda di lavoro', 'gepafin')}</h2>
<InstructorManagerMieDomandeTable statuses={['OPEN', 'SOCCORSO']} userId={userData.id}/>
<MieDomandeTableInstructorManagerAsync statuses={['OPEN', 'SOCCORSO']} userId={userData.id}/>
</div>
</div>
)