Update my_model/utilities/ui_manager.py
Browse files
my_model/utilities/ui_manager.py
CHANGED
@@ -28,7 +28,7 @@ class UIManager:
|
|
28 |
"""Displays the sidebar for navigation."""
|
29 |
|
30 |
st.sidebar.title("Navigation")
|
31 |
-
selection = st.sidebar.radio("Go to", list(self.tabs.keys()))
|
32 |
return selection
|
33 |
|
34 |
|
|
|
28 |
"""Displays the sidebar for navigation."""
|
29 |
|
30 |
st.sidebar.title("Navigation")
|
31 |
+
selection = st.sidebar.radio("Go to", list(self.tabs.keys()), disabled=st.session_state['loading_in_progress'])
|
32 |
return selection
|
33 |
|
34 |
|