Merge pull request #11578 from nextcloud/add-group-settings-fix
Fixed js error when adding new group
This commit is contained in:
commit
893d2daece
3 changed files with 2 additions and 4 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -205,7 +205,6 @@ export default {
|
|||
* Create a new group
|
||||
*
|
||||
* @param {Object} event The form submit event
|
||||
* @returns {Promise}
|
||||
*/
|
||||
createGroup(event) {
|
||||
let gid = event.target[0].value;
|
||||
|
@ -218,7 +217,6 @@ export default {
|
|||
.catch(() => {
|
||||
this.loadingAddGroup = false;
|
||||
});
|
||||
return this.$store.getters.getGroups[this.groups.length];
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
|
|
Loading…
Reference in a new issue