mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where users are unable to see data of the partition table using the View/Edit data option. Fixes #6375.
This commit is contained in:
@@ -43,7 +43,7 @@ export function showDataGrid(
|
||||
return;
|
||||
}
|
||||
|
||||
let applicable_nodes = ['table', 'view', 'mview', 'foreign_table'];
|
||||
let applicable_nodes = ['table', 'partition', 'view', 'mview', 'foreign_table', 'catalog_object'];
|
||||
if (applicable_nodes.indexOf(node.getData()._type) === -1) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user