mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Faceting no longer breaks pagination, fixes #282
This commit is contained in:
parent
49f317752c
commit
2bfd111d65
2 changed files with 8 additions and 3 deletions
|
|
@ -556,7 +556,7 @@ class TableView(RowTableShared):
|
|||
""".format(
|
||||
col=escape_sqlite(column),
|
||||
from_sql=from_sql,
|
||||
and_or_where='and' if where_clause else 'where',
|
||||
and_or_where='and' if from_sql_where_clauses else 'where',
|
||||
limit=facet_size+1,
|
||||
)
|
||||
try:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue