Spaces:
Running
Running
adrianpierce
commited on
Commit
•
54af6c8
1
Parent(s):
e95c920
Update pages/2_Saved_Recipes.py
Browse files- pages/2_Saved_Recipes.py +2 -2
pages/2_Saved_Recipes.py
CHANGED
@@ -18,7 +18,7 @@ for root, dirs, files in os.walk(directory_path):
|
|
18 |
|
19 |
#st.json(saved_files)
|
20 |
|
21 |
-
cols = st.columns([
|
22 |
with cols[0]:
|
23 |
user_search = st.text_input("Search Recipes", value="")
|
24 |
with cols[1]:
|
@@ -36,7 +36,7 @@ elif user_sort == 'Random':
|
|
36 |
for recipe in recipes_filtered:
|
37 |
with st.expander(recipe['name']):
|
38 |
st.markdown(recipe['md'])
|
39 |
-
st.write(recipe['file'])
|
40 |
|
41 |
|
42 |
# ignore
|
|
|
18 |
|
19 |
#st.json(saved_files)
|
20 |
|
21 |
+
cols = st.columns([4, 1])
|
22 |
with cols[0]:
|
23 |
user_search = st.text_input("Search Recipes", value="")
|
24 |
with cols[1]:
|
|
|
36 |
for recipe in recipes_filtered:
|
37 |
with st.expander(recipe['name']):
|
38 |
st.markdown(recipe['md'])
|
39 |
+
#st.write(recipe['file'])
|
40 |
|
41 |
|
42 |
# ignore
|