diff options
| author | Terry Truong <terry06890@gmail.com> | 2022-07-06 17:29:21 +1000 |
|---|---|---|
| committer | Terry Truong <terry06890@gmail.com> | 2022-07-06 17:29:21 +1000 |
| commit | 983530cffd27a6c633ea91e9ce910779043c7c6a (patch) | |
| tree | 5eadc6536c41778088ebd7757b3db1bbe0a4080e /src/components/TileInfoModal.vue | |
| parent | 7e67af7003ece713d7823fa7d6b32749516d508a (diff) | |
Use URLSearchParams instead of plain strings
Diffstat (limited to 'src/components/TileInfoModal.vue')
| -rw-r--r-- | src/components/TileInfoModal.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/TileInfoModal.vue b/src/components/TileInfoModal.vue index 9e0f2c3..02712cd 100644 --- a/src/components/TileInfoModal.vue +++ b/src/components/TileInfoModal.vue @@ -8,7 +8,7 @@ class="absolute top-1 right-1 md:top-2 md:right-2 w-8 h-8 hover:cursor-pointer"/> <div class="absolute top-1 left-1 md:top-2 md:left-2 flex items-center"> <a :href="'/?node=' + encodeURIComponent(nodeName)" class="block w-8 h-8 p-[2px] hover:cursor-pointer" - @click.prevent="onLinkIconClick"> + @click.prevent="onLinkIconClick" title="Copy link to this node"> <link-icon/> </a> <transition name="fadeslow"> |
