We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36e3e3c commit 1860e72Copy full SHA for 1860e72
app/streamlit_app.py
@@ -520,6 +520,8 @@ def rendering_section():
520
'🎨 Options',
521
use_container_width=True,
522
disabled=mapper_plot is None)
523
+ with col_0:
524
+ rendering_cont = st.empty()
525
526
with popover:
527
seed = st.number_input('Seed', value=VD_SEED)
@@ -550,9 +552,11 @@ def rendering_section():
550
552
551
553
auto_rendering = st.session_state[S_RESULTS].auto_rendering
554
if auto_rendering:
- _update_fig(seed, colors)
555
+ with rendering_cont:
556
+ with st.spinner('⏳ Rendering...'):
557
+ _update_fig(seed, colors)
558
- with col_0:
559
560
spinner_button_trigger(
561
'update_trigger',
562
'⏳ Rendering...',
0 commit comments