Hello everyone,
Basically what the title says.
If I place a st.text_input widget inside a beta_column using a with statement, the show password button (shaped like an eye) doesn’t work.
Edit: This is observed on Mozilla browser, but not on Chrome.
MWE:
import streamlit as st
pwdCol1, pwdCol2 = st.beta_columns([1, 3])
with pwdCol1:
password = st.text_input('Insert password', value = '', max_chars = None, key = None, type = 'password')
Conda installation on Windows 10 x64, python version 3.7.9, streamlit version 0.72