You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This bug bites me a lot on SaaS Redash. I can finally reproduce it! It happens when I click a link to a page in Redash (like a bookmark to a query or dashboard). Instead of loading the page normally I see the "It seems like the page you're looking for cannot be found." message. But the page will still work after I do a hard page refresh (F5 or ⌘⇧R).
I shouldn't need to hard refresh the page for this to work.
Steps to Reproduce
I reproduced on the preview instance here. You can also reproduce using the public shared dashboard link here.
Write a simple query without parameters: SELECT 1 foo
Publish it and copy its CSV download link
Visit the CSV download link from a browser with an active Redash session
Alternatively you can reproduce like I did:
same as above
same as above
Make a dashboard with a textbox widget and link to the CSV results download
Click the CSV link
Technical details:
Redash Version: v9 Beta
Browser/OS: FF, Edge, Safari
How did you install Redash: SaaS
The text was updated successfully, but these errors were encountered:
@susodapop I'm not sure about this happening when you click on a bookmark to a query or a dashboard (it can be a different bug though). This one seems related to be a Router problem, i.e.: it is identifying the /api/[...]/results link as an internal link and trying to handle it as an internal Route on the frontend (without reloading the page). Since this route doesn't exist (it is an api route, so it's not on frontend), it returns 404.
@kravets-levko maybe we should check if the route exists in the Router before sending it to be handled with it? 🤔
Issue Summary
This bug bites me a lot on SaaS Redash. I can finally reproduce it! It happens when I click a link to a page in Redash (like a bookmark to a query or dashboard). Instead of loading the page normally I see the "It seems like the page you're looking for cannot be found." message. But the page will still work after I do a hard page refresh (F5 or ⌘⇧R).
I shouldn't need to hard refresh the page for this to work.
Steps to Reproduce
I reproduced on the preview instance here. You can also reproduce using the public shared dashboard link here.
SELECT 1 foo
Alternatively you can reproduce like I did:
Technical details:
The text was updated successfully, but these errors were encountered: