From d8c227e26c7aa51b8a05fe20bce6b223cd022378 Mon Sep 17 00:00:00 2001 From: Nabil Adouani Date: Sat, 6 Mar 2021 13:05:13 +0100 Subject: [PATCH] #1816 Fix notification messages --- .../scripts/components/organisation/OrgCustomTagsListCmp.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/app/scripts/components/organisation/OrgCustomTagsListCmp.js b/frontend/app/scripts/components/organisation/OrgCustomTagsListCmp.js index 6c677676e3..30ac39a66f 100644 --- a/frontend/app/scripts/components/organisation/OrgCustomTagsListCmp.js +++ b/frontend/app/scripts/components/organisation/OrgCustomTagsListCmp.js @@ -69,7 +69,7 @@ return TagSrv.removeTag(tag._id); }) .then(function () { - NotificationSrv.success('Tag list', 'Tag removed successfully'); + NotificationSrv.success('Tag [' + tag.predicate + '] removed successfully'); self.load(); @@ -80,7 +80,7 @@ self.updateColour = function(id, colour) { TagSrv.updateTag(id, {colour: colour}) .then(function(/*response*/) { - NotificationSrv.success('Tag list', 'Tag colour updated successfully'); + NotificationSrv.success('Tag colour updated successfully'); }) .catch(function(err) { NotificationSrv.error('Tag list', err.data, err.status);