Skip to content
This repository has been archived by the owner on Oct 20, 2021. It is now read-only.

Commit

Permalink
fix(group): typo on the group addition notification
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasGeraud committed Jul 10, 2018
1 parent d684b90 commit c2f082b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/management/configuration/groups/groups.component.ts
Expand Up @@ -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();
Expand Down

0 comments on commit c2f082b

Please sign in to comment.