mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Fixed bug with ?_sort= and ?_search=, closes #1214
This commit is contained in:
parent
beb98bf454
commit
7a2ed9f8a1
2 changed files with 18 additions and 1 deletions
|
|
@ -815,7 +815,7 @@ class TableView(RowTableShared):
|
|||
|
||||
form_hidden_args = []
|
||||
for key in request.args:
|
||||
if key.startswith("_"):
|
||||
if key.startswith("_") and key not in ("_sort", "_search"):
|
||||
for value in request.args.getlist(key):
|
||||
form_hidden_args.append((key, value))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue