Skip to content

Commit

Permalink
fix: Notification link visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Zenoo committed Nov 9, 2024
1 parent 5adac47 commit 8540a33
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions client/src/layouts/Main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -423,10 +423,15 @@ const Main = () => {
<MuiAlert
key={notification.id}
variant="outlined"
severity="info"
severity={notification.severity}
icon={false}
action={notification.link && (
<Button color="inherit" size="small" onClick={goTo(notification.link)}>
<Button
color={notification.severity}
size="small"
variant="outlined"
onClick={goTo(notification.link)}
>
{t('go')}
</Button>
)}
Expand Down

0 comments on commit 8540a33

Please sign in to comment.