Jan Mühlnikel
commited on
Commit
·
83972f5
1
Parent(s):
091bfa0
added filter options to single matching tab
Browse files- similarity_page.py +2 -2
similarity_page.py
CHANGED
@@ -273,7 +273,7 @@ def show_multi_matching_page():
|
|
273 |
|
274 |
def show_single_matching_page():
|
275 |
|
276 |
-
col1, col2
|
277 |
with col1:
|
278 |
st.subheader("Select a reference project")
|
279 |
st.caption("""
|
@@ -285,7 +285,7 @@ def show_single_matching_page():
|
|
285 |
The filters are applied to find the similar projects and are independend of the selected reference project.
|
286 |
""")
|
287 |
|
288 |
-
col1, col2, col3 = st.columns([
|
289 |
with col1:
|
290 |
|
291 |
search_option = st.selectbox(
|
|
|
273 |
|
274 |
def show_single_matching_page():
|
275 |
|
276 |
+
col1, col2 = st.columns([1, 2])
|
277 |
with col1:
|
278 |
st.subheader("Select a reference project")
|
279 |
st.caption("""
|
|
|
285 |
The filters are applied to find the similar projects and are independend of the selected reference project.
|
286 |
""")
|
287 |
|
288 |
+
col1, col2, col3, col4 = st.columns([8, 1, 8, 8])
|
289 |
with col1:
|
290 |
|
291 |
search_option = st.selectbox(
|