Skip to content
Snippets Groups Projects
Verified Commit a9adfcf9 authored by Damien's avatar Damien
Browse files

FIX #15697 TIME 0:25 Fix user error message

parent 705548c1
No related branches found
No related tags found
No related merge requests found
...@@ -105,12 +105,12 @@ export class UsersListComponent { ...@@ -105,12 +105,12 @@ export class UsersListComponent {
const indexToDelete = this.userList.findIndex(user => user.id === userToDelete.id); const indexToDelete = this.userList.findIndex(user => user.id === userToDelete.id);
this.userList.splice(indexToDelete, 1); this.userList.splice(indexToDelete, 1);
this.sortedData = this.userList.slice(); this.sortedData = this.userList.slice();
this.notificationService.success('lang.userDeleted'); this.notificationService.success('lang.userDeleted');
}, },
error: err => {
this.notificationService.handleErrors(err);
}
}); });
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment