RED-8520 - Cannot compare False positives and False recommendations dictionaries in Dossier Template Entity configuration

This commit is contained in:
Valentin Mihai 2024-02-21 12:42:57 +02:00
parent d450c5c99f
commit a85a7e4298
2 changed files with 5 additions and 0 deletions

View File

@ -7,5 +7,6 @@
[initialEntries]="initialEntries$ | async"
[isLeavingPage]="isLeavingPage"
[selectedDictionaryType]="entityType"
[activeEntryType]="activeEntryType"
[type]="type"
></redaction-dictionary-manager>

View File

@ -79,4 +79,8 @@ export class DictionaryScreenComponent implements OnInit {
this._loadingService.stop();
}
}
get activeEntryType() {
return DICTIONARY_TO_ENTRY_TYPE_MAP[this.type];
}
}