mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
parent
82261a638b
commit
9199945a1b
1 changed files with 3 additions and 1 deletions
|
|
@ -468,7 +468,9 @@ class TableView(BaseView):
|
|||
display_columns = display_columns[1:]
|
||||
rows = list(rows)
|
||||
info = self.ds.inspect()
|
||||
table_rows = info[name]['tables'].get(table)['count']
|
||||
table_rows = None
|
||||
if not is_view:
|
||||
table_rows = info[name]['tables'][table]['count']
|
||||
next_value = None
|
||||
next_url = None
|
||||
if len(rows) > self.page_size:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue