Fixed an issue where row count notification was disappearing automatically. #5647

This commit is contained in:
Pravesh Sharma
2023-01-02 10:54:24 +05:30
committed by GitHub
parent 34e409f313
commit 67bc0c23ef
4 changed files with 26 additions and 14 deletions

View File

@@ -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);

View File

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