Backups are exported in standard JSON format along with all the images
diff --git a/frontend/src/components/Admin/Theme.vue b/frontend/src/components/Admin/Theme.vue
index 1373a3c70..9dc682818 100644
--- a/frontend/src/components/Admin/Theme.vue
+++ b/frontend/src/components/Admin/Theme.vue
@@ -1,6 +1,6 @@
- Theme Settings
+ Theme Settings
Select a theme from the dropdown or create a new theme. Note that the
@@ -44,15 +44,15 @@
-
-
-
+
+
+
diff --git a/frontend/src/components/Admin/Webhooks.vue b/frontend/src/components/Admin/Webhooks.vue
index a33622666..5f433e6a8 100644
--- a/frontend/src/components/Admin/Webhooks.vue
+++ b/frontend/src/components/Admin/Webhooks.vue
@@ -1,6 +1,8 @@
- Meal Planner Webhooks
+
+ Meal Planner Webhooks
+
The URLs listed below will recieve webhooks containing the recipe data
diff --git a/frontend/src/components/MealPlan/EditPlan.vue b/frontend/src/components/MealPlan/EditPlan.vue
index 0b0441977..61cb58f7e 100644
--- a/frontend/src/components/MealPlan/EditPlan.vue
+++ b/frontend/src/components/MealPlan/EditPlan.vue
@@ -1,6 +1,6 @@
- Edit Meal Plan
+ Edit Meal Plan
@@ -32,7 +32,6 @@ export default {
return utils.getDateAsPythonDate(dateObject);
},
async update() {
- this.process();
await api.mealPlans.update(this.mealPlan.uid, this.mealPlan);
this.$emit("updated");
},
diff --git a/frontend/src/components/MealPlan/MealPlanner.vue b/frontend/src/components/MealPlan/MealPlanner.vue
index 81b82c796..5a3ff07ff 100644
--- a/frontend/src/components/MealPlan/MealPlanner.vue
+++ b/frontend/src/components/MealPlan/MealPlanner.vue
@@ -8,24 +8,24 @@
- Meal Plans
+ Meal Plans
-
-
+
+
{{ formatDate(mealplan.startDate) }} -
{{ formatDate(mealplan.endDate) }}
-
+
-
- Edit
-
-
- Delete
-
+
+
+ Edit
+
+
+ Delete
+
+
diff --git a/frontend/src/components/MealPlan/NewMeal.vue b/frontend/src/components/MealPlan/NewMeal.vue
index 7d689f373..fe9f574e5 100644
--- a/frontend/src/components/MealPlan/NewMeal.vue
+++ b/frontend/src/components/MealPlan/NewMeal.vue
@@ -1,6 +1,6 @@
-
+
Create a New Meal Plan
diff --git a/frontend/src/components/MealPlan/ThisWeek.vue b/frontend/src/components/MealPlan/ThisWeek.vue
index b2f660cf9..75da6b7dd 100644
--- a/frontend/src/components/MealPlan/ThisWeek.vue
+++ b/frontend/src/components/MealPlan/ThisWeek.vue
@@ -17,7 +17,7 @@
diff --git a/frontend/src/components/RecipeEditor/EditRecipe.vue b/frontend/src/components/RecipeEditor/EditRecipe.vue
index b32e0aa76..a73d1c130 100644
--- a/frontend/src/components/RecipeEditor/EditRecipe.vue
+++ b/frontend/src/components/RecipeEditor/EditRecipe.vue
@@ -22,7 +22,6 @@
@@ -30,8 +29,8 @@
diff --git a/frontend/src/components/RecipeEditor/ViewRecipe.vue b/frontend/src/components/RecipeEditor/ViewRecipe.vue
index 0139c5b78..5d525fa84 100644
--- a/frontend/src/components/RecipeEditor/ViewRecipe.vue
+++ b/frontend/src/components/RecipeEditor/ViewRecipe.vue
@@ -16,7 +16,7 @@
type="label"
:ripple="false"
elevation="0"
- color="accent darken-1"
+ color="secondary darken-1"
class="rounded-sm static"
>
{{ yields }}
@@ -24,8 +24,8 @@
@@ -41,7 +41,7 @@
hide-details
class="ingredients"
:label="ingredient"
- color="accent"
+ color="secondary"
>
@@ -117,7 +117,7 @@
:ripple="false"
elevation="0"
:href="orgURL"
- color="accent darken-1"
+ color="secondary darken-1"
target="_blank"
class="rounded-sm mr-4"
>
diff --git a/frontend/src/components/UI/ButtonRow.vue b/frontend/src/components/UI/ButtonRow.vue
index 6869a1516..aec3c8cb8 100644
--- a/frontend/src/components/UI/ButtonRow.vue
+++ b/frontend/src/components/UI/ButtonRow.vue
@@ -9,11 +9,11 @@
mdi-content-save
-
+
mdi-code-braces
-
+
mdi-square-edit-outline
diff --git a/frontend/src/components/UI/RecipeCard.vue b/frontend/src/components/UI/RecipeCard.vue
index 4c893260f..b30b13760 100644
--- a/frontend/src/components/UI/RecipeCard.vue
+++ b/frontend/src/components/UI/RecipeCard.vue
@@ -13,8 +13,8 @@
dict:
def process_recipe_url(url: str) -> dict:
new_recipe: dict = scrape_url(url, python_objects=True)[0]
+ logger.info(f"Recipe Scraped From Web: {new_recipe}")
if not new_recipe:
return "fail" # TODO: Return Better Error Here