mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Fixed dumb error
This commit is contained in:
parent
f5f6cbe03c
commit
3ca290e0db
1 changed files with 1 additions and 1 deletions
|
|
@ -721,7 +721,7 @@ class TableView(RowTableShared):
|
|||
for arg in ("_fts_table", "_fts_pk"):
|
||||
if arg in special_args:
|
||||
form_hidden_args.append((arg, special_args[arg]))
|
||||
if request.args["_where"]:
|
||||
if request.args.get("_where"):
|
||||
for where_text in request.args["_where"]:
|
||||
form_hidden_args.append(("_where", where_text))
|
||||
return {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue