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() { 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;

View file

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

View file

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

View file

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

View file

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

View file

@ -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);
}, },
}, },