From 8e7a2010165273c9f0d40b4cdb3948300b63cdc1 Mon Sep 17 00:00:00 2001 From: Giuseppe Barchetta Date: Wed, 23 Oct 2024 12:37:57 +0200 Subject: [PATCH] Some general improvements, implemented the ability to reset the configuration in the configuration summary page. --- suggestarr-frontend/src/components/ConfigSummary.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suggestarr-frontend/src/components/ConfigSummary.vue b/suggestarr-frontend/src/components/ConfigSummary.vue index 233ec9b..cff159b 100644 --- a/suggestarr-frontend/src/components/ConfigSummary.vue +++ b/suggestarr-frontend/src/components/ConfigSummary.vue @@ -132,7 +132,7 @@ export default { }, forceRun() { this.isRunning = true; - axios.post('http://localhost:5000/api/automation/force_run', this.config) + axios.post('/api/automation/force_run', this.config) .then(response => { console.log(response.data.message); // Success message from backend })