From b835ded1572897232da8dd3d0f60240e1b78c4e3 Mon Sep 17 00:00:00 2001 From: headlessdev Date: Sat, 19 Apr 2025 13:21:39 +0200 Subject: [PATCH] Add notification type descriptions and icons for Gotify and Ntfy in Settings component --- app/dashboard/settings/Settings.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/app/dashboard/settings/Settings.tsx b/app/dashboard/settings/Settings.tsx index fde4b05..e006d2a 100644 --- a/app/dashboard/settings/Settings.tsx +++ b/app/dashboard/settings/Settings.tsx @@ -671,12 +671,24 @@ export default function Settings() { )} + {notification.type === "gotify" && ( +
+ +
+ )} + {notification.type === "ntfy" && ( +
+ +
+ )}

{notification.type}

{notification.type === "smtp" && "Email notifications"} {notification.type === "telegram" && "Telegram bot alerts"} {notification.type === "discord" && "Discord webhook alerts"} + {notification.type === "gotify" && "Gotify notifications"} + {notification.type === "ntfy" && "Ntfy notifications"}