From b764f1c861aa2ec3b61de1f1fe7eb605bfdb1d40 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 10 Jan 2019 13:29:59 +0100 Subject: [PATCH] For now make the notification bubble action go to notification view --- src/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/main.js b/src/js/main.js index 52423aea7..c0a43937c 100644 --- a/src/js/main.js +++ b/src/js/main.js @@ -85,7 +85,7 @@ angular.module('Application').controller('MainController', ['$scope', '$route', newNotifications.forEach(function (n) { $scope.notifications.push(n); - Client.notify(n.title, n.message, false, 'info', n.action); + Client.notify(n.title, n.message, false, 'info', '/#/notifications'); }); });