simonw / datasette-saved-queries

Datasette plugin that lets users save and execute queries
12 stars 0 forks source link

present saved queries in name order #9

Open trubens71 opened 1 year ago

trubens71 commented 1 year ago

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