json-api / explorer

A web-based app for exploring any JSON:API server.

Home Page:https://explore.jsonapi.dev/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

URLs that contain a port number are not supported.

mglaman opened this issue · comments

Given a URL with a port, such as http://127.0.0.1:8080/jsonapi/explorer/app?location=http://127.0.0.1:8080, the app crashes.

It ends up appending the port on subsequent URL builds.

Screen Shot 2019-10-31 at 3 20 57 PM

I think that's from compileJsonApiUrl in src/lib/url/url.js
The port was added in separately there, let me know if that fixes it for you.

Screen Shot 2019-10-31 at 5 00 44 PM

it works, thank you!