X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/4f1347018edbddff73c8bc1c82f4ff963c11dd1f..25216cc7acedc987c26a159f0b640210c0ef101e:/src/views/inactive-panel/inactive-panel.tsx diff --git a/src/views/inactive-panel/inactive-panel.tsx b/src/views/inactive-panel/inactive-panel.tsx index 91b4a51d..dc6846a2 100644 --- a/src/views/inactive-panel/inactive-panel.tsx +++ b/src/views/inactive-panel/inactive-panel.tsx @@ -7,9 +7,9 @@ import { Dispatch } from 'redux'; import { connect } from 'react-redux'; import { Grid, Typography, Button } from '@material-ui/core'; import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles'; -import { ArvadosTheme } from '~/common/custom-theme'; -import { navigateToLinkAccount } from '~/store/navigation/navigation-action'; -import { RootState } from '~/store/store'; +import { ArvadosTheme } from 'common/custom-theme'; +import { navigateToLinkAccount } from 'store/navigation/navigation-action'; +import { RootState } from 'store/store'; type CssRules = 'root' | 'ontop' | 'title'; @@ -54,7 +54,7 @@ export interface InactivePanelStateProps { type InactivePanelProps = WithStyles & InactivePanelActionProps & InactivePanelStateProps; export const InactivePanel = connect((state: RootState) => ({ - inactivePageText: state.config.clusterConfig.Workbench.InactivePageHTML + inactivePageText: state.auth.config.clusterConfig.Workbench.InactivePageHTML }), mapDispatchToProps)(withStyles(styles)((({ classes, startLinking, inactivePageText }: InactivePanelProps) =>