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

pull/25/head
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

@ -15,6 +15,7 @@ New features
| `Issue #4549 <https://redmine.postgresql.org/issues/4549>`_ - Allow a banner to be displayed on the login and other related pages showing custom text.
| `Issue #4566 <https://redmine.postgresql.org/issues/4566>`_ - Allow enhanced cookie protection to be disabled for compatibility with dynamically addressed hosting environments.
| `Issue #4570 <https://redmine.postgresql.org/issues/4570>`_ - Add an optimisation to the internal code responsible for searching for treeview nodes.
| `Issue #4574 <https://redmine.postgresql.org/issues/4574>`_ - Display the row count in the popup message when counting table rows, not just in the properties list.
Housekeeping
************

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}
)