diff --git a/frontend/src/annotation-service/ui/admin/status/editor/status-editor.resolver.ts b/frontend/src/annotation-service/ui/admin/status/editor/status-editor.resolver.ts index 54f9a1077..5f51c3246 100644 --- a/frontend/src/annotation-service/ui/admin/status/editor/status-editor.resolver.ts +++ b/frontend/src/annotation-service/ui/admin/status/editor/status-editor.resolver.ts @@ -24,7 +24,8 @@ export class StatusEditorResolver extends BaseEditorResolver { nameof(x => x.createdAt), nameof(x => x.updatedAt), nameof(x => x.hash), - nameof(x => x.isActive) + nameof(x => x.isActive), + nameof(x => x.belongsToCurrentTenant) ] } diff --git a/frontend/src/annotation-service/ui/admin/status/listing/status-listing.component.html b/frontend/src/annotation-service/ui/admin/status/listing/status-listing.component.html index 461d1d23d..0bf104f53 100644 --- a/frontend/src/annotation-service/ui/admin/status/listing/status-listing.component.html +++ b/frontend/src/annotation-service/ui/admin/status/listing/status-listing.component.html @@ -74,7 +74,7 @@ -
+
@@ -176,7 +176,7 @@

{{'NOTIFICATION-SERVICE.NOTIFICATION-TEMPLATE-EDITOR.FIELDS.BODY-FIELD-OPTIONS' | translate}} - +

diff --git a/frontend/src/notification-service/ui/admin/notification-template/editor/notification-template-editor.resolver.ts b/frontend/src/notification-service/ui/admin/notification-template/editor/notification-template-editor.resolver.ts index 793dc9906..310dfd034 100644 --- a/frontend/src/notification-service/ui/admin/notification-template/editor/notification-template-editor.resolver.ts +++ b/frontend/src/notification-service/ui/admin/notification-template/editor/notification-template-editor.resolver.ts @@ -53,7 +53,8 @@ export class NotificationTemplateEditorResolver extends BaseEditorResolver { nameof(x => x.createdAt), nameof(x => x.updatedAt), nameof(x => x.hash), - nameof(x => x.isActive) + nameof(x => x.isActive), + nameof(x => x.belongsToCurrentTenant) ] } diff --git a/frontend/src/notification-service/ui/admin/notification-template/listing/notification-template-listing.component.ts b/frontend/src/notification-service/ui/admin/notification-template/listing/notification-template-listing.component.ts index 70e4c3eb8..d2ea2522f 100644 --- a/frontend/src/notification-service/ui/admin/notification-template/listing/notification-template-listing.component.ts +++ b/frontend/src/notification-service/ui/admin/notification-template/listing/notification-template-listing.component.ts @@ -49,7 +49,8 @@ export class NotificationTemplateListingComponent extends BaseListingComponent(x => x.updatedAt), nameof(x => x.createdAt), nameof(x => x.hash), - nameof(x => x.isActive) + nameof(x => x.isActive), + nameof(x => x.belongsToCurrentTenant) ]; rowIdentity = x => x.id; @@ -79,11 +80,11 @@ export class NotificationTemplateListingComponent extends BaseListingComponent(x => x.createdAt), nameof(x => x.updatedAt), nameof(x => x.hash), - nameof(x => x.isActive) + nameof(x => x.isActive), + nameof(x => x.belongsToCurrentTenant) ]; rowIdentity = x => x.id; @@ -85,7 +86,7 @@ export class NotificationListingComponent extends BaseListingComponent