Merge pull request #23269 from sharidas/fix-remove-user-from-grp

Fix the user remove from group in UI
pull/23284/head
John Molakvoæ 2020-10-08 13:17:16 +07:00 committed by GitHub
commit d15179fd7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 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

@ -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 })
},
}