mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
/-/databases and homepage maintain connection order, closes #1216
This commit is contained in:
parent
03b35d70e2
commit
807de378d0
4 changed files with 7 additions and 6 deletions
|
|
@ -646,7 +646,7 @@ class Datasette:
|
|||
"is_memory": d.is_memory,
|
||||
"hash": d.hash,
|
||||
}
|
||||
for name, d in sorted(self.databases.items(), key=lambda p: p[1].name)
|
||||
for name, d in self.databases.items()
|
||||
if name != "_internal"
|
||||
]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue