Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -261,13 +261,12 @@ with col2:
|
|
| 261 |
|
| 262 |
# Display results if we have an offer result
|
| 263 |
if st.session_state.generated:
|
| 264 |
-
# Replace these two lines:
|
| 265 |
-
# st.markdown('### Oferta Generada')
|
| 266 |
-
# st.markdown(st.session_state.offer_result)
|
| 267 |
-
|
| 268 |
# With this line that uses the wrapper:
|
| 269 |
st.markdown(get_response_html_wrapper(st.session_state.offer_result), unsafe_allow_html=True)
|
| 270 |
|
|
|
|
|
|
|
|
|
|
| 271 |
col_download, col_empty = st.columns([8, 2])
|
| 272 |
with col_download:
|
| 273 |
st.download_button(
|
|
|
|
| 261 |
|
| 262 |
# Display results if we have an offer result
|
| 263 |
if st.session_state.generated:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 264 |
# With this line that uses the wrapper:
|
| 265 |
st.markdown(get_response_html_wrapper(st.session_state.offer_result), unsafe_allow_html=True)
|
| 266 |
|
| 267 |
+
# Add a small space
|
| 268 |
+
st.markdown('<div style="height: 15px;"></div>', unsafe_allow_html=True)
|
| 269 |
+
|
| 270 |
col_download, col_empty = st.columns([8, 2])
|
| 271 |
with col_download:
|
| 272 |
st.download_button(
|