Hide toast on click.

This commit is contained in:
Dessalines 2020-03-21 11:21:15 -04:00
parent ef9ae09c2b
commit 0414edeade
1 changed files with 6 additions and 2 deletions

8
ui/src/utils.ts vendored
View File

@ -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: () => {
router.history.push(link);
if (toast) {
toast.hideToast();
router.history.push(link);
}
},
}).showToast();
}