Hi, I am using a text_area and when I press ctrl+enter after typing, I am not getting the result. However, when I click outside the text area box, I see the “RUNNING” message followed by the result.
import streamlit as st
x = st.text_area(‘Your text here’)
st.write("Result: ", x)
Welcome to Streamlit and thank you for posting in our community!
I suspect that this has something to do with your browser because I tried running your code and I was unable to reproduce the behavior you’re describing.
I have submitted an issue on your behalf. To help us fix this for you, could you please add a comment to that issue with the requested information?
In the future, please feel free to submit a bug directly to Github.
I wonder if there’s something else in the OS that registered the Ctrl+Enter key, causing it to take precedence over Chrome and Streamlit. To test this hyphothesis, can you try the following steps?