Skip to content
Snippets Groups Projects
Commit 9014c782 authored by Ciarán Ainsworth's avatar Ciarán Ainsworth
Browse files

Fixed plugins disable switch

parent 79219fd6
No related branches found
No related tags found
No related merge requests found
Fixed an issue that prevented disabling plugins
\ No newline at end of file
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment