Browse Source

UI-3107: Use correct object property to access group ID (#66)

4.3
Joris Tirado 8 years ago
committed by GitHub
parent
commit
86bed3e155
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      submodules/groups/groups.js

+ 1
- 1
submodules/groups/groups.js View File

@ -1009,7 +1009,7 @@ define(function(require) {
template.find('.delete-group').on('click', function() {
monster.ui.confirm(self.i18n.active().groups.confirmDeleteGroup, function() {
self.groupsDelete(data.id, function(data) {
self.groupsDelete(data.group.id, function(data) {
toastr.success(monster.template(self, '!' + self.i18n.active().groups.groupDeleted, { name: data.group.name }));
self.groupsRender();


Loading…
Cancel
Save