From 84d87d3e33de978c8b5d111b282bcc256a0f5389 Mon Sep 17 00:00:00 2001 From: Vitalii Kiiko Date: Fri, 10 Apr 2026 16:47:56 +0200 Subject: [PATCH] - #6423 - Show applications APPROVED, REJECTED in table 'change status'; --- src/pages/Admin/components/ManageApplStatusSection/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/Admin/components/ManageApplStatusSection/index.js b/src/pages/Admin/components/ManageApplStatusSection/index.js index e4ea1fe..876b987 100644 --- a/src/pages/Admin/components/ManageApplStatusSection/index.js +++ b/src/pages/Admin/components/ManageApplStatusSection/index.js @@ -24,12 +24,12 @@ import { Toast } from 'primereact/toast'; const allStatuses = [ 'SUBMIT', 'EVALUATION', 'SOCCORSO', 'APPOINTMENT', 'NDG', 'ADMISSIBLE', - 'AWAITING_TECHNICAL_EVALUATION', 'TECHNICAL_EVALUATION' + 'AWAITING_TECHNICAL_EVALUATION', 'TECHNICAL_EVALUATION', 'APPROVED', 'REJECTED' ]; const availableStatuses = [ 'EVALUATION', 'SOCCORSO', 'APPOINTMENT', 'NDG', 'ADMISSIBLE', - 'AWAITING_TECHNICAL_EVALUATION', 'TECHNICAL_EVALUATION' + 'AWAITING_TECHNICAL_EVALUATION', 'TECHNICAL_EVALUATION', 'APPROVED', 'REJECTED' ]; const ManageApplStatusSection = () => {