X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2f857ebcd67a607b7fde9c0ea4808ac30c591876..d329bdf89ea30acc0e9a95bcb7bc4338f8beeebb:/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 5009f12987..178db25c22 100644 --- a/src/views/main-panel/main-panel.tsx +++ b/src/views/main-panel/main-panel.tsx @@ -7,6 +7,7 @@ import { connect } from 'react-redux'; 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'; +import { LinkAccountPanelStatus } from '~/store/link-account-panel/link-account-panel-reducer'; const mapStateToProps = (state: RootState): MainPanelRootDataProps => { return { @@ -14,7 +15,8 @@ const mapStateToProps = (state: RootState): MainPanelRootDataProps => { working: isSystemWorking(state.progressIndicator), loading: isWorkbenchLoading(state), buildInfo: state.appInfo.buildInfo, - uuidPrefix: state.auth.localCluster + uuidPrefix: state.auth.localCluster, + isNotLinking: state.linkAccountPanel.status === LinkAccountPanelStatus.INITIAL }; };