Spaces:
Running
Running
add checkbox
Browse files
app.py
CHANGED
@@ -115,7 +115,7 @@ if st.button('Submit'):
|
|
115 |
continue
|
116 |
|
117 |
result = results[pid]
|
118 |
-
col_icon, col_info = st.columns([
|
119 |
|
120 |
with col_icon:
|
121 |
st.image(result["logo"])
|
@@ -134,3 +134,6 @@ if st.button('Submit'):
|
|
134 |
|
135 |
st.markdown(f"""**_Description:_** {result['description'][:MAX_LENGTH_DESC]}...[more]({result['url']})
|
136 |
""")
|
|
|
|
|
|
|
|
115 |
continue
|
116 |
|
117 |
result = results[pid]
|
118 |
+
col_icon, col_info, col_compare = st.columns([2, 6, 1])
|
119 |
|
120 |
with col_icon:
|
121 |
st.image(result["logo"])
|
|
|
134 |
|
135 |
st.markdown(f"""**_Description:_** {result['description'][:MAX_LENGTH_DESC]}...[more]({result['url']})
|
136 |
""")
|
137 |
+
|
138 |
+
with col_compare:
|
139 |
+
st.checkbox('compare')
|