From 5f6137bb4bb40d4fcaade88b3fac319854b1bd71 Mon Sep 17 00:00:00 2001 From: Rafael Araujo Lehmkuhl Date: Mon, 21 Jun 2021 12:23:09 -0300 Subject: [PATCH] core: helper: Use versioned URL on frontend --- core/services/helper/html/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/services/helper/html/index.html b/core/services/helper/html/index.html index 142961c8ea..7419a1d4db 100644 --- a/core/services/helper/html/index.html +++ b/core/services/helper/html/index.html @@ -87,7 +87,7 @@ }, requestData () { console.debug('Requesting status..') - axios.get('latest/web_services').then((response) => { + axios.get('v1.0/web_services').then((response) => { // Sort services by port number this.services = response.data.sort( (first, second) => first.port - second.port,