diff --git a/.gitignore b/.gitignore index e356f2f9d..0fccc92fe 100644 --- a/.gitignore +++ b/.gitignore @@ -3,13 +3,11 @@ *__pycache__/ *.py[cod] *$py.class + # frontend/.env.development docs/site/ -mealie/temp/* -mealie/temp/api.html -.temp/ +*temp* .secret -!*/components/Recipe/Parts dev/data/backups/* dev/data/debug/* @@ -17,14 +15,6 @@ dev/data/img/* dev/data/migration/* dev/data/users/* -#Exception to keep folders -!mealie/dist/.gitkeep -!dev/data/backups/.gitkeep -!dev/data/backups/dev_sample_data* -!dev/data/debug/.gitkeep -!dev/data/migration/.gitkeep -!dev/data/img/.gitkeep - .DS_Store node_modules @@ -148,16 +138,10 @@ ENV/ # mypy .mypy_cache/ -# IDE settings -# .vscode/ - # Node Modules node_modules/ -mealie/data/debug/last_recipe.json -*.sqlite -dev/data/db/test.db +*.db scratch.py dev/data/backups/dev_sample_data*.zip -dev/data/backups/dev_sample_data*.zip !dev/data/backups/test*.zip -dev/data/recipes/* +dev/data/recipes/* \ No newline at end of file diff --git a/frontend/src/components/Recipe/Parts/Helpers/SettingsMenu.vue b/frontend/src/components/Recipe/Parts/Helpers/SettingsMenu.vue new file mode 100644 index 000000000..75445f160 --- /dev/null +++ b/frontend/src/components/Recipe/Parts/Helpers/SettingsMenu.vue @@ -0,0 +1,55 @@ + + + + + diff --git a/frontend/src/components/Recipe/RecipeEditor/index.vue b/frontend/src/components/Recipe/RecipeEditor/index.vue index cd675c5db..16225a952 100644 --- a/frontend/src/components/Recipe/RecipeEditor/index.vue +++ b/frontend/src/components/Recipe/RecipeEditor/index.vue @@ -8,6 +8,11 @@ :slug="value.slug" @refresh="$emit('upload')" /> + @@ -122,6 +127,7 @@ import Instructions from "@/components/Recipe/Parts/Instructions"; import Ingredients from "@/components/Recipe/Parts/Ingredients"; import Assets from "@/components/Recipe/Parts/Assets.vue"; import Notes from "@/components/Recipe/Parts/Notes.vue"; +import SettingsMenu from "@/components/Recipe/Parts/Helpers/SettingsMenu.vue"; export default { components: { BulkAdd, @@ -133,6 +139,7 @@ export default { Ingredients, Assets, Notes, + SettingsMenu, }, props: { value: Object,