Skip to content

Commit

Permalink
Fix map redirect URL (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
webb-ben committed Aug 23, 2024
1 parent b042d46 commit e264b13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/Datasets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -157,7 +157,7 @@ export default {
.catch(this.$root.catch)
},
loadMap(topic) {
this.$router.push(`/${topic}`);
this.$router.push(`/fixed-land-station-map/${topic}`);
},
},
};
Expand Down

0 comments on commit e264b13

Please sign in to comment.