Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -219,7 +219,7 @@ if fetch_data:
|
|
219 |
suggestions.append((row['title'], suggested_subject))
|
220 |
if suggestions:
|
221 |
suggestions_df = pd.DataFrame(suggestions, columns=["Title", "Suggested Subject"])
|
222 |
-
st.markdown("<div class='custom-table'>" + suggestions_df.to_markdown(index=
|
223 |
|
224 |
else:
|
225 |
st.info("No metadata enhancement suggestions available.")
|
|
|
219 |
suggestions.append((row['title'], suggested_subject))
|
220 |
if suggestions:
|
221 |
suggestions_df = pd.DataFrame(suggestions, columns=["Title", "Suggested Subject"])
|
222 |
+
st.markdown("<div class='custom-table'>" + suggestions_df.to_markdown(index=True) + "</div>", unsafe_allow_html=True)
|
223 |
|
224 |
else:
|
225 |
st.info("No metadata enhancement suggestions available.")
|