From e141553e3e2a3bbe05bc9876d36d52bca958197f Mon Sep 17 00:00:00 2001 From: Jannis Mattheis Date: Fri, 30 Mar 2018 22:37:03 +0200 Subject: [PATCH] Use message image for notifications --- ui/src/stores/Notifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/stores/Notifications.js b/ui/src/stores/Notifications.js index 1e8edf3..f4e628e 100644 --- a/ui/src/stores/Notifications.js +++ b/ui/src/stores/Notifications.js @@ -29,7 +29,7 @@ dispatcher.register((data) => { const notify = new Notify(msg.title, { body: msg.message, - icon: '/static/favicon.ico', + icon: msg.image, notifyClick: closeAndFocus, notifyShow: closeAfterTimeout, });