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 1373a3c70b28..9dc6828189ef 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 a33622666a9c..5f433e6a894f 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 0b04419773d4..61cb58f7e7da 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 81b82c796d75..5a3ff07ff3c8 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 7d689f373bf5..fe9f574e546f 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 b2f660cf9a3a..75da6b7dde7f 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 b32e0aa76cd8..a73d1c130e7c 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 0139c5b78548..5d525fa84d95 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 6869a1516a4a..aec3c8cb8490 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 4c893260f7fe..b30b13760da1 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