From e264b1318f0c3dc0fb84cbe8fe8297b55d575e97 Mon Sep 17 00:00:00 2001 From: Benjamin Webb <40066515+webb-ben@users.noreply.github.com> Date: Fri, 23 Aug 2024 01:20:13 -0800 Subject: [PATCH] Fix map redirect URL (#88) --- src/views/Datasets.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/Datasets.vue b/src/views/Datasets.vue index 89d277e..af09562 100644 --- a/src/views/Datasets.vue +++ b/src/views/Datasets.vue @@ -119,7 +119,7 @@ export default { if (c.hasObs) { links.push({ href: undefined, - target: `/${c.id}`, + target: `/fixed-land-station-map/${c.id}`, type: "Map", msg: "explore", icon: "mdi-map-marker-circle", @@ -157,7 +157,7 @@ export default { .catch(this.$root.catch) }, loadMap(topic) { - this.$router.push(`/${topic}`); + this.$router.push(`/fixed-land-station-map/${topic}`); }, }, };