Ridealist commited on
Commit
7d0d001
1 Parent(s): 4852d2f

bugfix: fix topic selection text overlapping

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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[:45] + "...",
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)