From: Michael Tremer Date: Fri, 4 Jul 2025 13:48:49 +0000 (+0000) Subject: frontend: Notification: Support success and danger state X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ad7f89e2f1c1f52a594046e2271d18713650b2f;p=pbs.git frontend: Notification: Support success and danger state Signed-off-by: Michael Tremer --- 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 @@