balena-dash
balena-dash copied to clipboard
Query parameters after an `&` are lost in `LAUNCH_URL`
For example if I were to use http://10.19.0.115/d/TbcZuIzRz/dash?orgId=1&refresh=5m&kiosk
, the actual page loaded would be: http://10.19.0.115/d/TbcZuIzRz/dash?orgId=1
@chrisys Does this work when setting the url using Tohora?
Have you tried escaping the &
s with a backslash (\
)?
use %26 to escape the ampersand.
\&
does not work, the URL still gets cut off.
%26
translates to the correct URL in the logs, but the screen stays black.