aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
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/App.vue
parent46891ca052e6049252a560895af55301f5e37b19 (diff)
Change data URL path format
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/App.vue b/src/App.vue
index 24ae12b..89d227d 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -189,7 +189,7 @@ export default defineComponent({
// Check if data for node-to-expand exists, getting from server if needed
let tolNode = this.tolMap.get(layoutNode.name)!;
if (!this.tolMap.has(tolNode.children[0])){
- return fetch('/tolnode/' + layoutNode.name + '?type=children')
+ return fetch('/data/children?name=' + encodeURIComponent(layoutNode.name))
.then(response => response.json())
.then(obj => {
Object.getOwnPropertyNames(obj).forEach(key => {this.tolMap.set(key, obj[key])});
@@ -492,7 +492,7 @@ export default defineComponent({
tryLayout(this.activeRoot, this.tileAreaPos, this.tileAreaDims, this.lytOpts,
{allowCollapse: true, layoutMap: this.layoutMap});
// Get initial tol node data
- fetch('/tolnode/' + rootName)
+ fetch('/data/node?name=' + encodeURIComponent(rootName))
.then(response => response.json())
.then(obj => {
Object.getOwnPropertyNames(obj).forEach(key => {this.tolMap.set(key, obj[key])});