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:https://github.com/simonw/datasette-saved-queries/blob/1c6e48676ad3e7366ed5cc9bae532d3bd85267b5/datasette_saved_queries/__init__.py#L43