X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/3b5edb7ae1de4709acef5d2c58ce12ecf5eb9fcf..9acf0accecfba4ac2f6dd2bb5f441ba7354a237b:/src/views/keep-service-panel/keep-service-panel-root.tsx diff --git a/src/views/keep-service-panel/keep-service-panel-root.tsx b/src/views/keep-service-panel/keep-service-panel-root.tsx index 8c266b61..7cc77956 100644 --- a/src/views/keep-service-panel/keep-service-panel-root.tsx +++ b/src/views/keep-service-panel/keep-service-panel-root.tsx @@ -2,11 +2,11 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; -import { StyleRulesCallback, WithStyles, withStyles, Card, CardContent, Button, Typography, Grid, Table, TableHead, TableRow, TableCell, TableBody, Tooltip, IconButton, Checkbox } from '@material-ui/core'; -import { ArvadosTheme } from '~/common/custom-theme'; -import { MoreOptionsIcon } from '~/components/icon/icon'; -import { KeepServiceResource } from '~/models/keep-services'; +import React from 'react'; +import { StyleRulesCallback, WithStyles, withStyles, Card, CardContent, Grid, Table, TableHead, TableRow, TableCell, TableBody, Tooltip, IconButton, Checkbox } from '@material-ui/core'; +import { ArvadosTheme } from 'common/custom-theme'; +import { MoreVerticalIcon } from 'components/icon/icon'; +import { KeepServiceResource } from 'models/keep-services'; type CssRules = 'root' | 'tableRow'; @@ -34,7 +34,7 @@ export interface KeepServicePanelRootDataProps { type KeepServicePanelRootProps = KeepServicePanelRootActionProps & KeepServicePanelRootDataProps & WithStyles; export const KeepServicePanelRoot = withStyles(styles)( - ({ classes, hasKeepSerices, keepServices, openRowOptions }: KeepServicePanelRootProps) => + ({ classes, hasKeepSerices, keepServices, openRowOptions }: KeepServicePanelRootProps) => {hasKeepSerices && @@ -73,7 +73,7 @@ export const KeepServicePanelRoot = withStyles(styles)( openRowOptions(event, keepService)}> - + @@ -84,4 +84,4 @@ export const KeepServicePanelRoot = withStyles(styles)( } -); \ No newline at end of file +);