Skip to content

Commit

Permalink
Merge pull request #2004 from ProgrammeVitam/bugs_13218
Browse files Browse the repository at this point in the history
Bugs #13218: correctly handle the disabled attribute
  • Loading branch information
ebernard authored Aug 30, 2024
2 parents 57b50ed + a9ab4b2 commit e844f53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,6 @@ export class IngestContractCreateComponent implements OnInit, OnDestroy {
}

signedDocumentPolicyIsDisabled(): boolean {
return this.signaturePolicy?.value?.signedDocument === SignedDocumentPolicyEnum.FORBIDDEN;
return this.signaturePolicy?.value?.signedDocument === SignedDocumentPolicyEnum.FORBIDDEN ? true : null;
}
}

0 comments on commit e844f53

Please sign in to comment.