add middleware and pagination, change resources model and store
[arvados-workbench2.git] / src / views / compute-node-panel / compute-node-panel-root.tsx
index feaadb5e5b86a92232354759506c185c3a334cca..e49fc79d0fbef7df23e05aa1aa72b5f09af4cfcf 100644 (file)
@@ -11,7 +11,7 @@ import { DataColumns } from '~/components/data-table/data-table';
 import { SortDirection } from '~/components/data-table/data-column';
 import { createTree } from '~/models/tree';
 import { 
-    ComputeNodeUuid, ComputeNodeInfo, ComputeNodeDomain, ComputeNodeHostname, ComputeNodeJobUuid,
+    CommonUuid, ComputeNodeInfo, ComputeNodeDomain, ComputeNodeHostname, ComputeNodeJobUuid,
     ComputeNodeFirstPingAt, ComputeNodeLastPingAt, ComputeNodeIpAddress
 } from '~/views-components/data-explorer/renderers';
 import { ResourcesState } from '~/store/resources/resources';
@@ -41,7 +41,7 @@ export const computeNodePanelColumns: DataColumns<string> = [
         configurable: true,
         sortDirection: SortDirection.NONE,
         filters: createTree(),
-        render: uuid => <ComputeNodeUuid uuid={uuid} />
+        render: uuid => <CommonUuid uuid={uuid} />
     },
     {
         name: ComputeNodePanelColumnNames.DOMAIN,