fix: markup shown as tags from some browsers (#404)

* fix: markup shown as tags from some browsers

* fix: notification body overflow

* Revert "fix: notification body overflow"

This reverts commit 58c0fe4758cbfcf1ca0fbf6e9c6a66322aa703cf.

* fix: remove options
This commit is contained in:
Rubin Bhandari
2024-11-05 11:15:57 +05:45
committed by GitHub
parent 155b9bb1f7
commit b5e91fa2dc
4 changed files with 8 additions and 0 deletions

View File

@@ -19,6 +19,8 @@ export const Body = (notif: Notification): BoxWidget => {
wrap: true,
class_name: 'notification-card-body-label menu',
label: notif['body'],
}).on('realize', (self) => {
self.set_markup(notif['body']);
}),
],
});

View File

@@ -35,6 +35,8 @@ export const Header = (notif: Notification): BoxWidget => {
truncate: 'end',
wrap: true,
label: notif['summary'],
}).on('realize', (self) => {
self.set_markup(notif['summary']);
}),
],
}),