diff --git a/frontend/src/api/themes.js b/frontend/src/api/themes.js index 6ff7a85ee..646dfdf38 100644 --- a/frontend/src/api/themes.js +++ b/frontend/src/api/themes.js @@ -33,7 +33,6 @@ export default { colors: colors, }; let response = await apiReq.put(settingsURLs.updateTheme(themeName), body); - console.log(response.data); return response.data; }, diff --git a/frontend/src/components/MealPlan/MealPlanNew.vue b/frontend/src/components/MealPlan/MealPlanNew.vue index 1af227f21..8eaaa4389 100644 --- a/frontend/src/components/MealPlan/MealPlanNew.vue +++ b/frontend/src/components/MealPlan/MealPlanNew.vue @@ -120,7 +120,6 @@ export default { }, async mounted() { let settings = await api.settings.requestAll(); - console.log(settings); this.items = await api.recipes.getAllByCategory(settings.planCategories); }, diff --git a/frontend/src/components/MealPlan/ShoppingListDialog.vue b/frontend/src/components/MealPlan/ShoppingListDialog.vue index 392d8dcf7..0af7f3d01 100644 --- a/frontend/src/components/MealPlan/ShoppingListDialog.vue +++ b/frontend/src/components/MealPlan/ShoppingListDialog.vue @@ -72,7 +72,6 @@ export default { }, async getIngredients() { this.ingredients = await api.mealPlans.shoppingList(this.planID); - console.log(this.ingredients); this.getRawIngredients(); }, getRawIngredients() { @@ -82,7 +81,6 @@ export default { this.rawIngredients = this.rawIngredients.flat(); this.rawIngredients = this.levenshteinFilter(this.rawIngredients); - console.log(this.rawIngredients); }, levenshteinFilter(source, maximum = 5) { let _source, matches, x, y; diff --git a/frontend/src/components/Recipe/RecipeTimeCard.vue b/frontend/src/components/Recipe/RecipeTimeCard.vue index 64596fae3..06943b9ea 100644 --- a/frontend/src/components/Recipe/RecipeTimeCard.vue +++ b/frontend/src/components/Recipe/RecipeTimeCard.vue @@ -1,50 +1,58 @@ @@ -59,7 +67,7 @@ export default { timeLength() { let times = []; let timeArray = [this.totalTime, this.prepTime, this.performTime]; - timeArray.forEach((element) => { + timeArray.forEach(element => { if (element) { times.push(element); } @@ -83,10 +91,10 @@ export default { }, timeCardWidth() { let timeArray = [this.totalTime, this.prepTime, this.performTime]; - let width = 120; - timeArray.forEach((element) => { + let width = 80; + timeArray.forEach(element => { if (element) { - width += 70; + width += 95; } }); diff --git a/frontend/src/components/Settings/MealPlanner/index.vue b/frontend/src/components/Settings/MealPlanner/index.vue index 298cd6830..8ea8ab61a 100644 --- a/frontend/src/components/Settings/MealPlanner/index.vue +++ b/frontend/src/components/Settings/MealPlanner/index.vue @@ -10,18 +10,22 @@