Show count of facet values if ?_facet_size=max, closes #1423

This commit is contained in:
Simon Willison 2021-08-16 11:56:32 -07:00
commit adb5b70de5
4 changed files with 30 additions and 2 deletions

View file

@ -928,6 +928,7 @@ class TableView(RowTableShared):
key=lambda f: (len(f["results"]), f["name"]),
reverse=True,
),
"show_facet_counts": special_args.get("_facet_size") == "max",
"extra_wheres_for_ui": extra_wheres_for_ui,
"form_hidden_args": form_hidden_args,
"is_sortable": any(c["sortable"] for c in display_columns),