From c2f082b5951122cb77bed92cce5b88900d3b744f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20G=C3=A9raud?= Date: Tue, 10 Jul 2018 17:02:16 +0200 Subject: [PATCH] fix(group): typo on the group addition notification fix gravitee-io/issues#1371 --- src/management/configuration/groups/groups.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/management/configuration/groups/groups.component.ts b/src/management/configuration/groups/groups.component.ts index 61ad7ad518..c1e1e6a9b7 100644 --- a/src/management/configuration/groups/groups.component.ts +++ b/src/management/configuration/groups/groups.component.ts @@ -64,7 +64,7 @@ const GroupsComponent: ng.IComponentOptions = { }).then( (newGroup) => { if (newGroup && newGroup.name) { GroupService.create(newGroup).then(() => { - NotificationService.show('Group ' + newGroup.name + ' has been removed.'); + NotificationService.show('Group ' + newGroup.name + ' has been added.'); GroupService.list().then( (response) => { this.groups = _.filter(response.data, 'manageable'); this.initEventRules();