diff --git a/webapp/src/components/tabContentComponents/aboutComponents/statusPane.vue b/webapp/src/components/tabContentComponents/aboutComponents/statusPane.vue index 269c5d21..1ec9103b 100644 --- a/webapp/src/components/tabContentComponents/aboutComponents/statusPane.vue +++ b/webapp/src/components/tabContentComponents/aboutComponents/statusPane.vue @@ -124,7 +124,7 @@ export default { () => { this.$store.commit("resetState"); // Post and silence errors - axios.post(this.baseUri + 'shutdown').catch(() => {}); + axios.post(this.baseUri + 'system_control/shutdown').catch(() => {}); }, () => {} ); @@ -134,7 +134,7 @@ export default { () => { this.$store.commit("resetState"); // Post and silence errors - axios.post(this.baseUri + 'restart').catch(() => {}); + axios.post(this.baseUri + 'system_control/restart').catch(() => {}); }, () => {} );