-
Notifications
You must be signed in to change notification settings - Fork 14.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: save query should use the correct sql #16753
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is the 2nd or 3rd bug we've fixed by changing the order of dispatch
vs. sync. Maybe we could update everything (in another PR)?
/testenv up |
@yousoph Container image not yet published for this PR. Please try again when build is complete. |
@yousoph Ephemeral environment creation failed. Please check the Actions logs for details. |
Codecov Report
@@ Coverage Diff @@
## master #16753 +/- ##
=======================================
Coverage 76.98% 76.98%
=======================================
Files 1007 1007
Lines 54174 54175 +1
Branches 7463 7463
=======================================
+ Hits 41708 41709 +1
Misses 12226 12226
Partials 240 240
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
That's a good idea. |
/testenv up |
@eschutho Ephemeral environment spinning up at http://34.217.146.46:8080. Credentials are |
Ephemeral environment shutdown and build artifacts deleted. |
🏷 2021.38 |
(cherry picked from commit f032cc2)
SUMMARY
Currently, if you were to save a query without running it, the redux store does not update, and the save query button will save the old query. This updates the action to trigger the redux action in all cases.
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
Before:
CleanShot.2021-09-15.at.13.22.55.mp4
After:
save.query.mov
TESTING INSTRUCTIONS
Write a query and then save it without hitting "run". Copy the link and paste it in a new window. The saved query should have the correct sql statement.
ADDITIONAL INFORMATION