Fix an issue where type column in dependencies tab is not showing correct label. #7225

This commit is contained in:
Aditya Toshniwal
2024-02-26 11:59:30 +05:30
parent a5530f59f7
commit 43f4cc4e17

View File

@@ -88,6 +88,9 @@ function Dependencies({ nodeData, nodeItem, node, treeNodeInfo, isActive, isStal
sortable: true,
resizable: true,
disableGlobalFilter: false,
Cell: ({row})=>{
return pgAdmin.Browser.Nodes?.[row.original.type]?.label??row.original.type;
}
},
{
Header: 'Name',