aboutsummaryrefslogtreecommitdiff
path: root/src/components/TileInfoModal.vue
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-07-09 11:49:39 +1000
committerTerry Truong <terry06890@gmail.com>2022-07-09 11:49:39 +1000
commit345c96f99aa98d5e90a46fa3f175ec0a2e6d4f36 (patch)
tree11b638898bf80f1e58b63b1246990ba07f9dcb38 /src/components/TileInfoModal.vue
parent5569c8191ae02f109254282b5943e3ed40032018 (diff)
Fix links-to-node failing on load
Was setting SERVER_URL incorrectly Also changed server API to include 'excl' param
Diffstat (limited to 'src/components/TileInfoModal.vue')
-rw-r--r--src/components/TileInfoModal.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/TileInfoModal.vue b/src/components/TileInfoModal.vue
index e5ea77b..a70215d 100644
--- a/src/components/TileInfoModal.vue
+++ b/src/components/TileInfoModal.vue
@@ -240,7 +240,7 @@ export default defineComponent({
onLinkIconClick(evt: Event){
// Copy link to clipboard
let url = new URL(window.location.href);
- url.search = 'node=' + encodeURIComponent(this.nodeName);
+ url.search = new URLSearchParams({node: this.nodeName});
navigator.clipboard.writeText(url.toString());
// Show visual indicator
this.linkCopied = true;