From 2903b949ea16423dddddc2c08da255e04c0beeef Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Tue, 17 Mar 2026 08:55:50 -0600 Subject: [PATCH] fix notification display in marketplace --- .../components/notification.component.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/web/projects/ui/src/app/routes/portal/routes/marketplace/components/notification.component.ts b/web/projects/ui/src/app/routes/portal/routes/marketplace/components/notification.component.ts index 3a6401e8c..e39cb9a77 100644 --- a/web/projects/ui/src/app/routes/portal/routes/marketplace/components/notification.component.ts +++ b/web/projects/ui/src/app/routes/portal/routes/marketplace/components/notification.component.ts @@ -7,7 +7,7 @@ import { TuiNotification } from '@taiga-ui/core' template: `
@@ -78,4 +78,15 @@ export class MarketplaceNotificationComponent { return null } + + get appearance() { + switch (this.status) { + case 'success': + return 'positive' + case 'error': + return 'negative' + default: + return 'info' + } + } }