Merge branch 'VM/RED-7989' into 'master'

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

Closes RED-7989

See merge request redactmanager/red-ui!208
This commit is contained in:
George Balanesc 2023-11-29 09:55:37 +01:00
commit 9f72bd78f8

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,