Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [20.x]
Expand Down
5 changes: 5 additions & 0 deletions src/components/NotificationPanel/NotificationItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,11 @@ export const NotificationItem: FunctionComponent<NewNotificationItemProps> = mem
}),
[second],
);

// TODO: fix in widgets lib for blank screen in unknown alert message
if (Message === null || Message === undefined) {
return null;
}
return (
<div className={styles.container}>
{backdrop && (
Expand Down