- updated tables and fixed some bugs;

This commit is contained in:
Vitalii Kiiko
2024-10-24 17:33:13 +02:00
parent 255af71365
commit 36b9ebb165
9 changed files with 40 additions and 21 deletions

View File

@@ -604,7 +604,7 @@ const BandoApplication = () => {
iconPos="right"/>
</div> : null}
{['AWAIT', 'READY', 'SUBMIT', 'EVALUATION'].includes(applicationStatus)
{'DRAFT' !== applicationStatus
? <div className="appPageSection">
<div className="appForm__field">
<label htmlFor="signedPdfFile">
@@ -615,7 +615,7 @@ const BandoApplication = () => {
<FileuploadApplicationSignedPdf
setDataFn={handleSetSignedDocumentFromFileupload}
fieldName="signedPdfFile"
disabled={['READY', 'SUBMIT', 'EVALUATION'].includes(applicationStatus)}
disabled={'AWAIT' !== applicationStatus}
defaultValue={is(Array, signedPdfFile) ? signedPdfFile : []}
accept={['.p7m,application/pkcs7-mime,application/x-pkcs7-mime,.zip']}
chooseLabel={__('Aggiungi documento', 'gepafin')}