Display the row count in the popup message when counting table rows, not just in the properties list. Fixes #4574
parent
b9d5e08e8f
commit
3a5464b278
|
@ -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 #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 #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 #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
|
Housekeeping
|
||||||
************
|
************
|
||||||
|
|
|
@ -1608,7 +1608,7 @@ class TableView(BaseTableView, DataTypeReader, VacuumSettings):
|
||||||
|
|
||||||
return make_json_response(
|
return make_json_response(
|
||||||
status=200,
|
status=200,
|
||||||
info=gettext("Table rows counted"),
|
info=gettext("Table rows counted: %s" % count),
|
||||||
data={'total_rows': count}
|
data={'total_rows': count}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue