Hi There,
for the static in-browser Node-RED, I made a change in the deep-linking to a node. This line:
let url = `${window.location.origin}${window.location.pathname}#${thingType}/${node.id}`
I changed to this:
let url = `${window.location.origin}${window.location.pathname}${window.location.search}#${thingType}/${node.id}`
to support parameters on the original NR url, example is this link.
I was wondering whether this is something that should go into NR? If so, I would create PR for it ...