Update my_pages/developer_decisions.py
Browse files
my_pages/developer_decisions.py
CHANGED
|
@@ -29,6 +29,7 @@ def render():
|
|
| 29 |
if button_click_s:
|
| 30 |
st.session_state.active_stage = stage
|
| 31 |
st.session_state.active_substage = None
|
|
|
|
| 32 |
|
| 33 |
# Level 2: Sub-stages
|
| 34 |
if st.session_state.active_stage:
|
|
@@ -44,6 +45,7 @@ def render():
|
|
| 44 |
button_click_ss = st.button(sub)
|
| 45 |
if button_click_ss:
|
| 46 |
st.session_state.active_substage = sub
|
|
|
|
| 47 |
|
| 48 |
# Questions
|
| 49 |
if st.session_state.active_substage:
|
|
|
|
| 29 |
if button_click_s:
|
| 30 |
st.session_state.active_stage = stage
|
| 31 |
st.session_state.active_substage = None
|
| 32 |
+
st.rerun()
|
| 33 |
|
| 34 |
# Level 2: Sub-stages
|
| 35 |
if st.session_state.active_stage:
|
|
|
|
| 45 |
button_click_ss = st.button(sub)
|
| 46 |
if button_click_ss:
|
| 47 |
st.session_state.active_substage = sub
|
| 48 |
+
st.rerun()
|
| 49 |
|
| 50 |
# Questions
|
| 51 |
if st.session_state.active_substage:
|