From 1d680ab2dbcf35e32863aa2cc31ee93bd367b763 Mon Sep 17 00:00:00 2001 From: Adam Monsen Date: Fri, 31 Jan 2025 07:05:40 -0800 Subject: [PATCH] disable cache for Docuseal fetch I noticed my Docuseal card was showing "online" after I'd shut it down. Might be from one of these? https://github.com/search?q=repo%3Adocusealco%2Fdocuseal%20cache%20control&type=code and/or because /version is just a file? Either way, this fixes it from the Homer side. --- src/components/services/Docuseal.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/services/Docuseal.vue b/src/components/services/Docuseal.vue index f2b79c8..ad858a7 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;