mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 14:33:33 -07:00
actually remove console.logs
This commit is contained in:
parent
5a373f38fa
commit
5ec174e3e1
6 changed files with 0 additions and 8 deletions
|
@ -72,7 +72,6 @@ export default {
|
||||||
},
|
},
|
||||||
async getIngredients() {
|
async getIngredients() {
|
||||||
this.ingredients = await api.mealPlans.shoppingList(this.planID);
|
this.ingredients = await api.mealPlans.shoppingList(this.planID);
|
||||||
console.log(this.ingredients);
|
|
||||||
this.getRawIngredients();
|
this.getRawIngredients();
|
||||||
},
|
},
|
||||||
getRawIngredients() {
|
getRawIngredients() {
|
||||||
|
@ -82,7 +81,6 @@ export default {
|
||||||
|
|
||||||
this.rawIngredients = this.rawIngredients.flat();
|
this.rawIngredients = this.rawIngredients.flat();
|
||||||
this.rawIngredients = this.levenshteinFilter(this.rawIngredients);
|
this.rawIngredients = this.levenshteinFilter(this.rawIngredients);
|
||||||
console.log(this.rawIngredients);
|
|
||||||
},
|
},
|
||||||
levenshteinFilter(source, maximum = 5) {
|
levenshteinFilter(source, maximum = 5) {
|
||||||
let _source, matches, x, y;
|
let _source, matches, x, y;
|
||||||
|
|
|
@ -121,7 +121,6 @@ export default {
|
||||||
},
|
},
|
||||||
async getSiteSettings() {
|
async getSiteSettings() {
|
||||||
let settings = await api.settings.requestAll();
|
let settings = await api.settings.requestAll();
|
||||||
console.log(settings);
|
|
||||||
this.webhooks = settings.webhooks.webhookURLs;
|
this.webhooks = settings.webhooks.webhookURLs;
|
||||||
this.name = settings.name;
|
this.name = settings.name;
|
||||||
this.time = settings.webhooks.webhookTime;
|
this.time = settings.webhooks.webhookTime;
|
||||||
|
|
|
@ -63,8 +63,6 @@ export default {
|
||||||
this.buildSidebar();
|
this.buildSidebar();
|
||||||
},
|
},
|
||||||
showSidebar() {
|
showSidebar() {
|
||||||
console.log("Sidebar", this.showSidebar);
|
|
||||||
console.log("Mobile", this.mobile);
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|
|
@ -90,7 +90,6 @@ export default {
|
||||||
.map(x => ({ item: x }))
|
.map(x => ({ item: x }))
|
||||||
.sort((a, b) => (a.name > b.name ? 1 : -1));
|
.sort((a, b) => (a.name > b.name ? 1 : -1));
|
||||||
}
|
}
|
||||||
console.log(this.result);
|
|
||||||
this.$emit("results", this.result);
|
this.$emit("results", this.result);
|
||||||
|
|
||||||
if (this.showResults === true) {
|
if (this.showResults === true) {
|
||||||
|
|
|
@ -58,7 +58,6 @@ export default {
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
updateResults(results) {
|
updateResults(results) {
|
||||||
console.log(results);
|
|
||||||
this.searchResults = results;
|
this.searchResults = results;
|
||||||
},
|
},
|
||||||
emitSelect(name, slug) {
|
emitSelect(name, slug) {
|
||||||
|
|
|
@ -134,7 +134,6 @@ export default {
|
||||||
this.requestMeals();
|
this.requestMeals();
|
||||||
},
|
},
|
||||||
openShoppingList(id) {
|
openShoppingList(id) {
|
||||||
console.log(this.$refs.shoppingList.openDialog);
|
|
||||||
this.$refs.shoppingList.openDialog(id);
|
this.$refs.shoppingList.openDialog(id);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue