streamlit-keyup
streamlit-keyup copied to clipboard
Issue with component iframe height
The input field is way too tall in this current implementation as per the attached screenshot below:
It looks like Streamlit.setFrameHeight(73)
doesn't actually set the iframe height correctly. Adding
window.addEventListener("load", () => {
window.setTimeout(function() {
Streamlit.setFrameHeight(73)
}, 0)
})
seems to help, but the component is still very tall most of the times...
Any other ideas?
Any leads on this issue? @blackary @msabramo