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>
This commit is contained in:
Sujith Haridasan 2020-10-08 11:41:13 +05:30 committed by backportbot[bot]
parent c578b11fe3
commit 22b24b8f5d
1 changed files with 1 additions and 1 deletions

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