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() {
|
||||
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;
|
||||
|
|
|
@ -121,7 +121,6 @@ export default {
|
|||
},
|
||||
async getSiteSettings() {
|
||||
let settings = await api.settings.requestAll();
|
||||
console.log(settings);
|
||||
this.webhooks = settings.webhooks.webhookURLs;
|
||||
this.name = settings.name;
|
||||
this.time = settings.webhooks.webhookTime;
|
||||
|
|
|
@ -63,8 +63,6 @@ export default {
|
|||
this.buildSidebar();
|
||||
},
|
||||
showSidebar() {
|
||||
console.log("Sidebar", this.showSidebar);
|
||||
console.log("Mobile", this.mobile);
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
|
|
|
@ -90,7 +90,6 @@ export default {
|
|||
.map(x => ({ item: x }))
|
||||
.sort((a, b) => (a.name > b.name ? 1 : -1));
|
||||
}
|
||||
console.log(this.result);
|
||||
this.$emit("results", this.result);
|
||||
|
||||
if (this.showResults === true) {
|
||||
|
|
|
@ -58,7 +58,6 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
updateResults(results) {
|
||||
console.log(results);
|
||||
this.searchResults = results;
|
||||
},
|
||||
emitSelect(name, slug) {
|
||||
|
|
|
@ -134,7 +134,6 @@ export default {
|
|||
this.requestMeals();
|
||||
},
|
||||
openShoppingList(id) {
|
||||
console.log(this.$refs.shoppingList.openDialog);
|
||||
this.$refs.shoppingList.openDialog(id);
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue