Browse Source

Fix the user remove from group in UI

Fix the removal of user from the group in UI.

Signed-off-by: Sujith Haridasan <sujith.h@gmail.com>
tags/v21.0.0beta1
Sujith Haridasan 3 years ago
parent
commit
9a286d58bc

+ 2
- 2
apps/settings/js/vue-settings-apps-users-management.js
File diff suppressed because it is too large
View File


+ 1
- 1
apps/settings/js/vue-settings-apps-users-management.js.map
File diff suppressed because it is too large
View File


+ 1
- 1
apps/settings/src/store/api.js View File

@@ -76,6 +76,6 @@ export default {
return axios.put(sanitize(url), data)
},
delete(url, data) {
return axios.delete(sanitize(url), { data })
return axios.delete(sanitize(url), { params: data })
},
}

Loading…
Cancel
Save