mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
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:
@@ -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}
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user