From d20687da30d1b502a59bd1709afbb58e6715a4d0 Mon Sep 17 00:00:00 2001 From: Noemi Date: Tue, 8 Jul 2025 09:52:57 +0200 Subject: [PATCH 1/2] add new column --- .../components/DomandeTablePreInstructorAsync/index.js | 6 ++++++ src/pages/Domande/components/AllDomandeTableAsync/index.js | 1 + 2 files changed, 7 insertions(+) diff --git a/src/pages/DashboardPreInstructor/components/DomandeTablePreInstructorAsync/index.js b/src/pages/DashboardPreInstructor/components/DomandeTablePreInstructorAsync/index.js index 72c210a..fcf5011 100644 --- a/src/pages/DashboardPreInstructor/components/DomandeTablePreInstructorAsync/index.js +++ b/src/pages/DashboardPreInstructor/components/DomandeTablePreInstructorAsync/index.js @@ -242,6 +242,8 @@ const DomandeTablePreInstructorAsync = ({ userId = null, statuses = [] }) => { } }, [lazyState]); + console.log(items) + return (
{ style={{ minWidth: '8rem' }} filterMatchModeOptions={translationStrings.dateFilterOptions} body={dateEndBodyTemplate} filter filterElement={dateFilterTemplate}/> + { ApplicationService.getApplicationsPaginated(paginationQuery, getCallback, errGetCallbacks); }, [lazyState, updaterString]); + return (
Date: Wed, 9 Jul 2025 08:54:25 +0200 Subject: [PATCH 2/2] add filter --- .../components/DomandeTablePreInstructorAsync/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/DashboardPreInstructor/components/DomandeTablePreInstructorAsync/index.js b/src/pages/DashboardPreInstructor/components/DomandeTablePreInstructorAsync/index.js index fcf5011..6870a7e 100644 --- a/src/pages/DashboardPreInstructor/components/DomandeTablePreInstructorAsync/index.js +++ b/src/pages/DashboardPreInstructor/components/DomandeTablePreInstructorAsync/index.js @@ -50,7 +50,8 @@ const DomandeTablePreInstructorAsync = ({ userId = null, statuses = [] }) => { companyName: { value: null, matchMode: 'contains' }, submissionDate: { value: null, matchMode: 'dateIs' }, evaluationEndDate: { value: null, matchMode: 'dateIs' }, - applicationStatus: { value: null, matchMode: 'equals' } + applicationStatus: { value: null, matchMode: 'equals' }, + assignedUserName: { value: null, matchMode: 'equals' } } });