From c0ae033de8e37057f6a4cec19d7b6b4ae487d069 Mon Sep 17 00:00:00 2001 From: "D. Berge" Date: Sun, 27 Jul 2025 11:15:09 +0200 Subject: [PATCH] Use Cache API to cache binary sequence data. This speeds up loading when the user moves away from and then revisits the map tab. NOTE: As of this commit, there is no way to refresh or invalidate the cache. --- lib/www/client/source/src/views/Map.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/www/client/source/src/views/Map.vue b/lib/www/client/source/src/views/Map.vue index 2856bbb..373ce6d 100644 --- a/lib/www/client/source/src/views/Map.vue +++ b/lib/www/client/source/src/views/Map.vue @@ -486,7 +486,7 @@ export default { } }; - self.api([url, init, cb]); + self.api([url, init, cb, {cache: true}]); }); }