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

This commit is contained in:
Valentin Mihai 2023-11-29 11:05:35 +02:00
parent 0d7c5efd7d
commit e8fe6f37de

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,