mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-19 03:25:29 +00:00
Hide toast on click.
This commit is contained in:
parent
ef9ae09c2b
commit
0414edeade
6
ui/src/utils.ts
vendored
6
ui/src/utils.ts
vendored
@ -444,7 +444,8 @@ export function messageToastify(
|
||||
router: any
|
||||
) {
|
||||
let backgroundColor = `var(--light)`;
|
||||
Toastify({
|
||||
|
||||
let toast = Toastify({
|
||||
text: `${body}<br />${creator}`,
|
||||
avatar: avatar,
|
||||
backgroundColor: backgroundColor,
|
||||
@ -453,7 +454,10 @@ export function messageToastify(
|
||||
position: 'right',
|
||||
duration: 0,
|
||||
onClick: () => {
|
||||
if (toast) {
|
||||
toast.hideToast();
|
||||
router.history.push(link);
|
||||
}
|
||||
},
|
||||
}).showToast();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user