CCockrum commited on
Commit
7c59eba
·
verified ·
1 Parent(s): 462e82f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=False) + "</div>", unsafe_allow_html=True)
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.")