Spaces:
Sleeping
Sleeping
Update to add empty text inside scrollable div to make it visible from start
Browse files
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
|