diff --git a/changes/changelog.d/plugins.bugfix b/changes/changelog.d/plugins.bugfix new file mode 100644 index 000000000..896a82935 --- /dev/null +++ b/changes/changelog.d/plugins.bugfix @@ -0,0 +1 @@ +Fixed an issue that prevented disabling plugins \ No newline at end of file diff --git a/front/src/components/auth/Plugin.vue b/front/src/components/auth/Plugin.vue index ea5394b66..7c679062c 100644 --- a/front/src/components/auth/Plugin.vue +++ b/front/src/components/auth/Plugin.vue @@ -91,7 +91,7 @@ export default { this.isLoading = true this.errors = [] let url = `plugins/${this.plugin.name}` - let enableUrl = this.enabled ? `${url}/enable` : `${url}/enable` + let enableUrl = this.enabled ? `${url}/enable` : `${url}/disable` await axios.post(enableUrl) try { await axios.post(url, this.values)