Spaces:
Runtime error
Runtime error
bugfix: fix topic selection text overlapping
Browse files
app.py
CHANGED
@@ -344,7 +344,7 @@ def page4():
|
|
344 |
topic = st.session_state.topic = st.selectbox(
|
345 |
label="Choose your topic",
|
346 |
options=topic_list,
|
347 |
-
format_func=lambda x: x[:
|
348 |
# help="This is help message",
|
349 |
)
|
350 |
st.write("> Topic : ", topic)
|
|
|
344 |
topic = st.session_state.topic = st.selectbox(
|
345 |
label="Choose your topic",
|
346 |
options=topic_list,
|
347 |
+
format_func=lambda x: x[:35] + "...",
|
348 |
# help="This is help message",
|
349 |
)
|
350 |
st.write("> Topic : ", topic)
|