This commit is contained in:
Borislav Pantaleev 2025-03-05 14:53:39 +02:00 committed by Borislav Pantaleev
parent 2eb0f804ee
commit ad8aa21dc2
2 changed files with 1 additions and 3 deletions

View File

@ -115,7 +115,6 @@ const ServerCommandsPanel = () => {
}
setServerProcess({...serverProcess});
console.log("serverProcess fecht notifications");
};
if (isLoading) {

View File

@ -167,7 +167,6 @@ export const ServerNotificationsBadge = () => {
sx={{
overflow: "hidden",
textOverflow: "ellipsis",
whiteSpace: "nowrap"
}}
dangerouslySetInnerHTML={{ __html: notification.output.split("\n")[0] }}
/>
@ -175,7 +174,7 @@ export const ServerNotificationsBadge = () => {
/>
<ListItemText
primary={
<Typography variant="body2">{getTimeSince(notification.sent_at) + " ago"}</Typography>
<Typography variant="body2" sx={{ color: theme.palette.text.secondary }}>{getTimeSince(notification.sent_at) + " ago"}</Typography>
}
/>
</ListItem>