]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix the user remove from group in UI
authorSujith Haridasan <sujith.h@gmail.com>
Thu, 8 Oct 2020 06:11:13 +0000 (11:41 +0530)
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>
Thu, 8 Oct 2020 11:21:02 +0000 (11:21 +0000)
Fix the removal of user from the group in UI.

Signed-off-by: Sujith Haridasan <sujith.h@gmail.com>
apps/settings/src/store/api.js

index 9d34e4835e72ab17cab6590316c18f9a9b30daaf..ef2a51b2a156f2f8deb59c7ca9fe5905bca55ae5 100644 (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 })
        },
 }