Spaces:
Runtime error
Runtime error
Sheshera Mysore
commited on
Commit
·
8f2fefc
1
Parent(s):
b19792a
CHanges to allow multiselect text to show all the full concept.
Browse files
app.py
CHANGED
|
@@ -457,6 +457,13 @@ if selected_user is not None:
|
|
| 457 |
|
| 458 |
st.subheader('\U0001F9D1 Profile descriptors for ranking')
|
| 459 |
with st.form('profile_input'):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 460 |
profile_selections = st.multiselect(label='Add or remove profile descriptors to use for recommendations:',
|
| 461 |
default=input_user_kps, # Use all the values by default.
|
| 462 |
options=input_user_kps,
|
|
|
|
| 457 |
|
| 458 |
st.subheader('\U0001F9D1 Profile descriptors for ranking')
|
| 459 |
with st.form('profile_input'):
|
| 460 |
+
st.markdown("""
|
| 461 |
+
<style>
|
| 462 |
+
.stMultiSelect [data-baseweb=select] span{
|
| 463 |
+
max-width: 500px;
|
| 464 |
+
}
|
| 465 |
+
</style>
|
| 466 |
+
""", unsafe_allow_html=True)
|
| 467 |
profile_selections = st.multiselect(label='Add or remove profile descriptors to use for recommendations:',
|
| 468 |
default=input_user_kps, # Use all the values by default.
|
| 469 |
options=input_user_kps,
|