X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/525e81bdbe18ea369f5a61a713e743608bab2e42..cb73538f0851cea402a0544861966c2515a24b5b:/services/workbench2/src/views/process-panel/process-panel-root.tsx diff --git a/services/workbench2/src/views/process-panel/process-panel-root.tsx b/services/workbench2/src/views/process-panel/process-panel-root.tsx index d019d1418f..c972c0a6cf 100644 --- a/services/workbench2/src/views/process-panel/process-panel-root.tsx +++ b/services/workbench2/src/views/process-panel/process-panel-root.tsx @@ -3,8 +3,7 @@ // SPDX-License-Identifier: AGPL-3.0 import React from "react"; -import { Grid, StyleRulesCallback, WithStyles, withStyles } from "@material-ui/core"; -import { DefaultView } from "components/default-view/default-view"; +import { StyleRulesCallback, WithStyles, withStyles } from "@material-ui/core"; import { ProcessIcon } from "components/icon/icon"; import { Process } from "store/processes/process"; import { SubprocessPanel } from "views/subprocess-panel/subprocess-panel"; @@ -24,6 +23,7 @@ import { AuthState } from "store/auth/auth-reducer"; import { ProcessCmdCard } from "./process-cmd-card"; import { ContainerRequestResource } from "models/container-request"; import { OutputDetails, NodeInstanceType } from "store/process-panel/process-panel"; +import { NotFoundView } from 'views/not-found-panel/not-found-panel'; type CssRules = "root"; @@ -205,20 +205,14 @@ export const ProcessPanelRoot = withStyles(styles)( xs maxHeight="50%" data-cy="process-children"> - + ) : ( - - - + ); } );