Display the row count in the popup message when counting table rows, not just in the properties list. Fixes #4574

This commit is contained in:
Dave Page
2019-08-07 11:17:57 +01:00
parent b9d5e08e8f
commit 3a5464b278
2 changed files with 2 additions and 1 deletions

View File

@@ -1608,7 +1608,7 @@ class TableView(BaseTableView, DataTypeReader, VacuumSettings):
return make_json_response(
status=200,
info=gettext("Table rows counted"),
info=gettext("Table rows counted: %s" % count),
data={'total_rows': count}
)