From 1336d6219e0b2985886cf6376c7adc6708ed4236 Mon Sep 17 00:00:00 2001 From: Vitalii Kiiko Date: Mon, 9 Jun 2025 13:39:23 +0200 Subject: [PATCH] - removed status 'close' from request that was preventing creating new amendments; --- src/pages/DomandaEditPreInstructor/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/DomandaEditPreInstructor/index.js b/src/pages/DomandaEditPreInstructor/index.js index b90787c..d48278a 100644 --- a/src/pages/DomandaEditPreInstructor/index.js +++ b/src/pages/DomandaEditPreInstructor/index.js @@ -968,7 +968,7 @@ const DomandaEditPreInstructor = () => { storeSet('setAsyncRequest'); ApplicationEvaluationService.getEvaluationVersionByApplId(entityId, getVersion, errGetVersion); AmendmentsService.getSoccorsoByApplId(entityId, getAmendmentsCallback, errGetAmendmentsCallback, [ - ['statuses', ['AWAITING', 'RESPONSE_RECEIVED', 'CLOSE']] + ['statuses', ['AWAITING', 'RESPONSE_RECEIVED']] ]); }, [id]);