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
Simon, thanks so much for your work on datasette. I'd like to request a minor update to present the saved queries in name order (I assume currently they are in order of insert to sqlite). I plan to create a lot of saved queries for non-technical colleagues to use and want to arrange them in an accessible way.
The fix appears to be as simple as updating the sql to read select name, sql from saved_queries order by name at this line:
Simon, thanks so much for your work on datasette. I'd like to request a minor update to present the saved queries in name order (I assume currently they are in order of insert to sqlite). I plan to create a lot of saved queries for non-technical colleagues to use and want to arrange them in an accessible way.
The fix appears to be as simple as updating the sql to read
select name, sql from saved_queries order by name
at this line:datasette-saved-queries/datasette_saved_queries/__init__.py
Line 43 in 1c6e486
The text was updated successfully, but these errors were encountered: