andreska commited on
Commit
a964187
·
verified ·
1 Parent(s): 972f7cf

Update to add empty text inside scrollable div to make it visible from start

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -37,6 +37,7 @@ st.markdown(
37
 
38
  # Define the placeholder globally
39
  placeholder = st.empty()
 
40
 
41
  def handle_submit():
42
  user_input = st.session_state.user_input
 
37
 
38
  # Define the placeholder globally
39
  placeholder = st.empty()
40
+ placeholder.markdown(f'<div class="scrollable-div"><p></p></div>', unsafe_allow_html=True)
41
 
42
  def handle_submit():
43
  user_input = st.session_state.user_input