mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where row count notification was disappearing automatically. #5647
This commit is contained in:
@@ -279,7 +279,7 @@ define('pgadmin.node.table', [
|
||||
type:'GET',
|
||||
})
|
||||
.done(function(res) {
|
||||
Notify.success(res.info);
|
||||
Notify.success(res.info, undefined, true);
|
||||
d.rows_cnt = res.data.total_rows;
|
||||
t.unload(i);
|
||||
t.setInode(i);
|
||||
|
||||
@@ -210,6 +210,7 @@ export function getNodeView(nodeType, treeNodeInfo, actionType, itemNodeData, fo
|
||||
key={itemNodeData?._id}
|
||||
formType={formType}
|
||||
getInitData={initData}
|
||||
updatedData={{rows_cnt: itemNodeData?.rows_cnt}}
|
||||
schema={schema}
|
||||
viewHelperProps={viewHelperProps}
|
||||
onSave={onSaveClick}
|
||||
|
||||
Reference in New Issue
Block a user