aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-04-26 23:46:51 +1000
committerTerry Truong <terry06890@gmail.com>2022-04-26 23:46:51 +1000
commit55e281a57c2ac9acb18836ea7a48f5a553d924e2 (patch)
tree7065e72dbed9991e94bbe9695d6c0a9a8560d783 /src/components
parent46891ca052e6049252a560895af55301f5e37b19 (diff)
Change data URL path format
Diffstat (limited to 'src/components')
-rw-r--r--src/components/SearchModal.vue5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/SearchModal.vue b/src/components/SearchModal.vue
index 9c30cbc..f3bb237 100644
--- a/src/components/SearchModal.vue
+++ b/src/components/SearchModal.vue
@@ -20,11 +20,12 @@ export default defineComponent({
let input = this.$refs.searchInput as HTMLInputElement;
// Query server
let url = new URL(window.location.href);
- url.pathname = '/tolnode/' + input.value;
+ url.pathname = '/data/node';
+ url.search = '?name=' + encodeURIComponent(input.value);
fetch(url.toString())
.then(response => {
// Search successful. Get nodes in parent-chain, add to tolMap, then emit event.
- url.search = '?type=chain';
+ url.pathname = '/data/chain';
fetch(url.toString())
.then(response => response.json())
.then(obj => {