Fixed an issue where users are unable to see data of the partition table using the View/Edit data option. Fixes #6375.
parent
7f59463e3b
commit
8aea86613e
|
@ -27,3 +27,4 @@ Bug fixes
|
|||
| `Issue #6338 <https://redmine.postgresql.org/issues/6338>`_ - Added missing dependency 'xdg-utils' for the desktop packages in RPM and Debian.
|
||||
| `Issue #6344 <https://redmine.postgresql.org/issues/6344>`_ - Fixed cannot unpack non-iterable response object error when selecting any partition.
|
||||
| `Issue #6356 <https://redmine.postgresql.org/issues/6356>`_ - Mark the Apache HTTPD config file as such in the web DEB and RPM packages.
|
||||
| `Issue #6375 <https://redmine.postgresql.org/issues/6375>`_ - Fixed an issue where users are unable to see data of the partitions using the View/Edit data option.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue