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:39:47 +02:00
parent 9d0e1acdd2
commit c33e7efaa5
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];
}
}