actually remove console.logs

This commit is contained in:
hay-kot 2021-02-19 18:16:55 -09:00
commit 5ec174e3e1
6 changed files with 0 additions and 8 deletions

View file

@ -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;

View file

@ -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;

View file

@ -63,8 +63,6 @@ export default {
this.buildSidebar();
},
showSidebar() {
console.log("Sidebar", this.showSidebar);
console.log("Mobile", this.mobile);
},
},
mounted() {

View file

@ -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) {

View file

@ -58,7 +58,6 @@ export default {
},
methods: {
updateResults(results) {
console.log(results);
this.searchResults = results;
},
emitSelect(name, slug) {

View file

@ -134,7 +134,6 @@ export default {
this.requestMeals();
},
openShoppingList(id) {
console.log(this.$refs.shoppingList.openDialog);
this.$refs.shoppingList.openDialog(id);
},
},