diff --git a/src/components/services/Docuseal.vue b/src/components/services/Docuseal.vue index f2b79c8d..ad858a79 100644 --- a/src/components/services/Docuseal.vue +++ b/src/components/services/Docuseal.vue @@ -41,7 +41,10 @@ export default { }, methods: { fetchStatus: async function () { - this.fetch("/version", null, false) + const params = { + cache: "no-cache", + }; + this.fetch("/version", params, false) .then((response) => { this.status = "online"; this.versionstring = response;