Remove inconsistent parameters

This commit is contained in:
Bubka 2020-11-26 13:09:23 +01:00
parent 1292b7bd89
commit 07670d8e56

View File

@ -34,14 +34,14 @@
await this.form.post('/api/groups') await this.form.post('/api/groups')
if( this.form.errors.any() === false ) { if( this.form.errors.any() === false ) {
this.$router.push({name: 'groups', params: { InitialEditMode: false }}); this.$router.push({ name: 'groups' });
} }
}, },
cancelCreation: function() { cancelCreation: function() {
this.$router.push({name: 'groups', params: { InitialEditMode: false }}); this.$router.push({ name: 'groups' });
}, },
}, },