X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/3b53b656e65fdabc32b3bc748074eb35e9df98eb..33c03ae3c79936cc1a69129f07fba33fe2d28fd8:/src/views/main-panel/main-panel.tsx diff --git a/src/views/main-panel/main-panel.tsx b/src/views/main-panel/main-panel.tsx index 5bf03da3..edbf5cc4 100644 --- a/src/views/main-panel/main-panel.tsx +++ b/src/views/main-panel/main-panel.tsx @@ -4,6 +4,7 @@ import { RootState } from '~/store/store'; import { connect } from 'react-redux'; +import parse from 'parse-duration'; import { MainPanelRoot, MainPanelRootDataProps } from '~/views/main-panel/main-panel-root'; import { isSystemWorking } from '~/store/progress-indicator/progress-indicator-reducer'; import { isWorkbenchLoading } from '~/store/workbench/workbench-actions'; @@ -18,7 +19,9 @@ const mapStateToProps = (state: RootState): MainPanelRootDataProps => { buildInfo: state.appInfo.buildInfo, uuidPrefix: state.auth.localCluster, isNotLinking: state.linkAccountPanel.status === LinkAccountPanelStatus.NONE || state.linkAccountPanel.status === LinkAccountPanelStatus.INITIAL, - isLinkingPath: state.router.location ? matchLinkAccountRoute(state.router.location.pathname) !== null : false + isLinkingPath: state.router.location ? matchLinkAccountRoute(state.router.location.pathname) !== null : false, + siteBanner: state.auth.config.clusterConfig.Workbench.SiteName, + sessionIdleTimeout: parse(state.auth.config.clusterConfig.Workbench.IdleTimeout, 's') || 0 }; };