adrianpierce commited on
Commit
e61cedc
·
1 Parent(s): 0c1e9e7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -118,7 +118,7 @@ st.header("Recipes")
118
  filter_all = list(set(filter_name) & set(filter_ingredient) & set(filter_source) & set(filter_type) & set(st.session_state.filter_bar))
119
 
120
  if len(similar_select) > 0:
121
- st.text(f'Recipes sorted with most similar to {similar_select} at the top.')
122
  st.dataframe(
123
  recipes.set_index('name') \
124
  .join(recipe_similarity[similar_select], on='name') \
 
118
  filter_all = list(set(filter_name) & set(filter_ingredient) & set(filter_source) & set(filter_type) & set(st.session_state.filter_bar))
119
 
120
  if len(similar_select) > 0:
121
+ st.markdown(f'Recipes sorted with most similar to **{similar_select[0]}** at the top.')
122
  st.dataframe(
123
  recipes.set_index('name') \
124
  .join(recipe_similarity[similar_select], on='name') \