SolidOS / solid-ui

User Interface widgets and utilities for Solid
https://solidos.github.io/solid-ui/dist/solid-ui.js
MIT License
148 stars 41 forks source link

Wrong path resolved when navigating from index.ttl to resource in sub-folder #354

Open angelo-v opened 4 years ago

angelo-v commented 4 years ago

Given the following folder structure in a Pod:

├── Parent
│   ├── index.ttl
│   ├── Sub
│   │   └── file.ttl

and some triple in index.ttl linking to Sub:

<#this> <> <./Sub>

When opening /Parent or /Parent/index.ttl#this in a browser and expanding the tree up to file.ttl Then the file can not be found

The data browser is doing a request against Parent/file.ttl instead of Parent/Sub/file.ttl

image