-
Notifications
You must be signed in to change notification settings - Fork 4k
Closed
Labels
type:bugSomething isn't working as expectedSomething isn't working as expected
Description
Summary
When widgets of different types are placed in columns within a row, their vertical alignment gets broken. (See example below). Users report that this was working previously but was recently broken in v0.81
Steps to reproduce
import streamlit as st
col1, col2, col3, col4 = st.beta_columns(4)
with col1:
st.write('GCFS Countries.xlsx')
with col2:
box2 = st.text_input(label='', value='gdfs')
with col3:
box3 = st.text_input(label='', value='gdfs_countries')
with col4:
box4 = st.selectbox(label='', options=['replace'])Expected behavior:
Widgets should be aligned at the same level vertically
Actual behavior:
Is this a regression?
That is, did this use to work the way you expected in the past?
Yes, users report that this was working correctly as of 0.78
frankhuurman, igor-i-plotnikov and markjay4k
Metadata
Metadata
Assignees
Labels
type:bugSomething isn't working as expectedSomething isn't working as expected
