Skip to content

Commit 8281769

Browse files
committed
Changed rendering order
1 parent fd40120 commit 8281769

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

app/streamlit_app.py

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -556,23 +556,29 @@ def main():
556556
set_sidebar_headings()
557557
if S_RESULTS not in st.session_state:
558558
st.session_state[S_RESULTS] = Results()
559+
col_0, col_1 = st.columns(2)
560+
col_2, col_3 = st.columns(2)
561+
559562
with st.sidebar:
560563
data_section()
561564
st.markdown('#')
562-
settings_section()
563-
st.markdown('#')
564-
rendering_section()
565-
col_0, col_1 = st.columns(2)
566-
col_2, col_3 = st.columns(2)
567565
with col_0:
568566
data_output()
569567
with col_2:
570568
data_download_button()
569+
570+
with st.sidebar:
571+
settings_section()
572+
st.markdown('#')
571573
with col_1:
572574
settings_output()
573575
with col_3:
574576
graph_download_button()
577+
578+
with st.sidebar:
579+
rendering_section()
575580
rendering_output()
581+
576582
st.divider()
577583
st.markdown(FOOTER)
578584

0 commit comments

Comments
 (0)