Skip to content
Snippets Groups Projects
Commit 9a1ba16b authored by Quentin Ribac's avatar Quentin Ribac
Browse files

FIX #20786 TIME 0:10 disable signedByDefault toggle for signed_response

parent c5df5505
No related branches found
No related tags found
No related merge requests found
......@@ -135,6 +135,9 @@ export class AttachmentTypeAdministrationComponent implements OnInit {
if (id === 'newVersionDefault' && !this.attachmentType['versionEnabled'].value) {
this.attachmentType['newVersionDefault'].setValue(false);
return false;
} else if (id === 'signedByDefault' && this.attachmentType['typeId'].value === 'signed_response') {
this.attachmentType['signedByDefault'].setValue(true);
return false;
} else {
return true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment