RED-7989 - Case Sensitive field not updated correctly in UI

This commit is contained in:
Valentin Mihai 2023-11-28 19:48:48 +02:00
parent 83495a7466
commit 1302c1b455

View File

@ -146,7 +146,7 @@ export class AddEditEntityComponent extends BaseFormComponent implements OnInit
hint: [{ value: !!this.entity?.hint, disabled: this.#isSystemManaged }],
hasDictionary: [{ value: !!this.entity?.hasDictionary, disabled: this.#isSystemManaged }],
dossierDictionaryOnly: [{ value: !!this.entity?.dossierDictionaryOnly, disabled: this.#isSystemManaged || this.entity }],
caseSensitive: [{ value: !!this.entity?.caseInsensitive, disabled: this.#isSystemManaged }],
caseSensitive: [{ value: !this.entity?.caseInsensitive, disabled: this.#isSystemManaged }],
manageEntriesInDictionaryEditorOnly: [
{
value: !this.entity?.addToDictionaryAction,