mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
1) Added support to show all background processes in separate panel. Fixes #3709
2) Port process watcher to React. Fixes #7404
This commit is contained in:
committed by
Akshay Joshi
parent
271b6d91fc
commit
c2b23465cc
@@ -61,7 +61,7 @@ function getColumn(data, singleLineStatistics) {
|
||||
column = {
|
||||
Header: row.name,
|
||||
accessor: row.name,
|
||||
sortble: true,
|
||||
sortable: true,
|
||||
resizable: true,
|
||||
disableGlobalFilter: false,
|
||||
sortType: ((rowA, rowB, id) => {
|
||||
@@ -72,7 +72,7 @@ function getColumn(data, singleLineStatistics) {
|
||||
column = {
|
||||
Header: row.name,
|
||||
accessor: row.name,
|
||||
sortble: true,
|
||||
sortable: true,
|
||||
resizable: true,
|
||||
disableGlobalFilter: false,
|
||||
};
|
||||
@@ -87,14 +87,14 @@ function getColumn(data, singleLineStatistics) {
|
||||
{
|
||||
Header: gettext('Statistics'),
|
||||
accessor: 'name',
|
||||
sortble: true,
|
||||
sortable: true,
|
||||
resizable: true,
|
||||
disableGlobalFilter: false,
|
||||
},
|
||||
{
|
||||
Header: 'Value',
|
||||
accessor: 'value',
|
||||
sortble: true,
|
||||
sortable: true,
|
||||
resizable: true,
|
||||
disableGlobalFilter: false,
|
||||
},
|
||||
@@ -165,14 +165,14 @@ export default function Statistics({ nodeData, item, node, ...props }) {
|
||||
{
|
||||
Header: 'Statictics',
|
||||
accessor: 'name',
|
||||
sortble: true,
|
||||
sortable: true,
|
||||
resizable: true,
|
||||
disableGlobalFilter: false,
|
||||
},
|
||||
{
|
||||
Header: 'Value',
|
||||
accessor: 'value',
|
||||
sortble: true,
|
||||
sortable: true,
|
||||
resizable: true,
|
||||
disableGlobalFilter: false,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user