14720: Federated login chooser wip
[arvados-workbench2.git] / src / views / main-panel / main-panel.tsx
index 7592afb388ec031e06a75faaf66abb58352c43f1..087163dcd25870014557a975953a87af69de96c6 100644 (file)
@@ -13,10 +13,11 @@ const mapStateToProps = (state: RootState): MainPanelRootDataProps => {
         user: state.auth.user,
         working: isSystemWorking(state.progressIndicator),
         loading: isWorkbenchLoading(state),
-        buildInfo: state.appInfo.buildInfo
+        buildInfo: state.appInfo.buildInfo,
+        uuidPrefix: state.properties.uuidPrefix
     };
 };
 
 const mapDispatchToProps = null;
 
-export const MainPanel = connect(mapStateToProps, mapDispatchToProps)(MainPanelRoot);
\ No newline at end of file
+export const MainPanel = connect(mapStateToProps, mapDispatchToProps)(MainPanelRoot);