From 9ad7f89e2f1c1f52a594046e2271d18713650b2f Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 4 Jul 2025 13:48:49 +0000 Subject: [PATCH] frontend: Notification: Support success and danger state Signed-off-by: Michael Tremer --- frontend/src/components/Notification.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/Notification.vue b/frontend/src/components/Notification.vue index 563799ce..4185567c 100644 --- a/frontend/src/components/Notification.vue +++ b/frontend/src/components/Notification.vue @@ -3,6 +3,8 @@ defineProps<{ title?: string, + isSuccess?: boolean, + isDanger?: boolean, isClosable?: boolean, }>() @@ -11,7 +13,7 @@