m7mdal7aj commited on
Commit
f28eb9c
1 Parent(s): afa0e9e

Update my_model/utilities/ui_manager.py

Browse files
Files changed (1) hide show
  1. my_model/utilities/ui_manager.py +1 -1
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