]> Untitled Git - lemmy.git/commitdiff
Hide toast on click.
authorDessalines <tyhou13@gmx.com>
Sat, 21 Mar 2020 15:21:15 +0000 (11:21 -0400)
committerDessalines <tyhou13@gmx.com>
Sat, 21 Mar 2020 15:21:15 +0000 (11:21 -0400)
ui/src/utils.ts

index cab1fd5b093bb89143c44ce8f3d7865f934682cf..48bd175e25a5d2933ef5db27804df5b61a161ee9 100644 (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();
 }