From c7e3305a7636cf69b6e621c93afa30ab2b810b30 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sun, 12 Oct 2025 20:12:55 +0200 Subject: [PATCH] Update system-logs.tsx --- AppImage/components/system-logs.tsx | 31 +++++++++++++++++++---------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/AppImage/components/system-logs.tsx b/AppImage/components/system-logs.tsx index cb19f88..b404a4e 100644 --- a/AppImage/components/system-logs.tsx +++ b/AppImage/components/system-logs.tsx @@ -993,32 +993,41 @@ export function SystemLogs() { {/* Notifications Tab */} -
+
{notifications.map((notification, index) => (
{ setSelectedNotification(notification) setIsNotificationModalOpen(true) }} > -
-
- {getNotificationIcon(notification.type)} - + {/* Header with icon, badge, and timestamp */} +
+
+
{getNotificationIcon(notification.type)}
+ {notification.type.toUpperCase()}
-
{notification.timestamp}
+
+ {notification.timestamp} +
-
-
+ {/* Message content */} +
+
{notification.message}
-
- Service: {notification.service} • Source: {notification.source} +
+ Service: {notification.service} + + Source: {notification.source}