diff --git a/apps/red-ui/src/app/modules/admin/screens/entities-listing/entities-listing-screen.component.html b/apps/red-ui/src/app/modules/admin/screens/entities-listing/entities-listing-screen.component.html index f4370e0d0..6685b2597 100644 --- a/apps/red-ui/src/app/modules/admin/screens/entities-listing/entities-listing-screen.component.html +++ b/apps/red-ui/src/app/modules/admin/screens/entities-listing/entities-listing-screen.component.html @@ -91,16 +91,18 @@ {{ templateStats.dictionarySummary(dict.type)?.entriesCount || 0 }} -
+
implements IDictionary { readonly type: string; readonly typeId?: string; readonly hasDictionary?: boolean; + readonly systemManaged?: boolean; entries: List; falsePositiveEntries: List; @@ -39,6 +40,7 @@ export class Dictionary extends Entity implements IDictionary { this.type = entity.type; this.typeId = entity.typeId; this.hasDictionary = entity.hasDictionary; + this.systemManaged = entity.systemManaged; } get id(): string { diff --git a/libs/red-domain/src/lib/dictionaries/dictionary.ts b/libs/red-domain/src/lib/dictionaries/dictionary.ts index 5f0e6b205..899216bb2 100644 --- a/libs/red-domain/src/lib/dictionaries/dictionary.ts +++ b/libs/red-domain/src/lib/dictionaries/dictionary.ts @@ -55,4 +55,6 @@ export interface IDictionary { readonly recommendationHexColor?: string; readonly hasDictionary?: boolean; + + readonly systemManaged?: boolean; }