From 9c3cd5c5efc092805e23d2989f5bde1279e7fba5 Mon Sep 17 00:00:00 2001 From: Vitalii Kiiko Date: Fri, 23 Jan 2026 11:14:59 +0100 Subject: [PATCH] - fix for amount accepted; --- src/pages/DomandaEditInstructorManager/index.js | 2 +- src/pages/DomandaEditPreInstructor/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/DomandaEditInstructorManager/index.js b/src/pages/DomandaEditInstructorManager/index.js index 80c92ed..4d183ad 100644 --- a/src/pages/DomandaEditInstructorManager/index.js +++ b/src/pages/DomandaEditInstructorManager/index.js @@ -1859,7 +1859,7 @@ const DomandaEditInstructorManager = () => { 0} + readOnly={!isEmpty(data.amountAccepted) && data.amountAccepted > 0} keyfilter="int" invalid={!finalDialogData.amount || isEmpty(finalDialogData.amount) || finalDialogData.amount === 0} onChange={(e) => updateFinalDialogData(e.value, 'amount')}/> diff --git a/src/pages/DomandaEditPreInstructor/index.js b/src/pages/DomandaEditPreInstructor/index.js index 3d21a28..76d2733 100644 --- a/src/pages/DomandaEditPreInstructor/index.js +++ b/src/pages/DomandaEditPreInstructor/index.js @@ -1859,7 +1859,7 @@ const DomandaEditPreInstructor = () => { 0} + readOnly={!isEmpty(data.amountAccepted) && data.amountAccepted > 0} keyfilter="int" invalid={!finalDialogData.amount || isEmpty(finalDialogData.amount) || finalDialogData.amount === 0} onChange={(e) => updateFinalDialogData(e.value, 'amount')}/>