remove console.logs

This commit is contained in:
hay-kot 2021-03-31 18:53:01 -08:00
commit c6eaf5ba4c
7 changed files with 0 additions and 12 deletions

View file

@ -21,7 +21,6 @@ export const metaAPI = {
async getIsDemo() { async getIsDemo() {
let response = await apiReq.get(debugURLs.demo); let response = await apiReq.get(debugURLs.demo);
console.log(response);
return response.data; return response.data;
}, },
}; };

View file

@ -273,7 +273,6 @@ export default {
await this.initialize(); await this.initialize();
}, },
resetPassword() { resetPassword() {
console.log(this.activeId);
api.users.resetPassword(this.editedItem.id); api.users.resetPassword(this.editedItem.id);
}, },
}, },

View file

@ -125,7 +125,6 @@ export default {
computed: { computed: {
groupSettings() { groupSettings() {
console.log(this.$store.getters.getCurrentGroup);
return this.$store.getters.getCurrentGroup; return this.$store.getters.getCurrentGroup;
}, },
actualStartDate() { actualStartDate() {

View file

@ -99,11 +99,6 @@ export default {
default: 999, default: 999,
}, },
}, },
watch: {
recipes() {
console.log(this.recipes);
},
},
computed: { computed: {
viewScale() { viewScale() {
switch (this.$vuetify.breakpoint.name) { switch (this.$vuetify.breakpoint.name) {

View file

@ -154,7 +154,6 @@ export default {
return utils.getImageURL(image); return utils.getImageURL(image);
}, },
selected(slug, name) { selected(slug, name) {
console.log("Selected", slug, name);
this.$emit("selected", slug, name); this.$emit("selected", slug, name);
}, },
async onFocus() { async onFocus() {

View file

@ -36,7 +36,6 @@ export default {
}, },
computed: { computed: {
siteSettings() { siteSettings() {
console.log(this.$store.getters.getSiteSettings);
return this.$store.getters.getSiteSettings; return this.$store.getters.getSiteSettings;
}, },
recentRecipes() { recentRecipes() {
@ -54,7 +53,6 @@ export default {
this.siteSettings.categories.forEach(async element => { this.siteSettings.categories.forEach(async element => {
let recipes = await this.getRecipeByCategory(element.slug); let recipes = await this.getRecipeByCategory(element.slug);
if (recipes.recipes.length < 0) recipes.recipes = []; if (recipes.recipes.length < 0) recipes.recipes = [];
console.log(recipes);
this.recipeByCategory.push(recipes); this.recipeByCategory.push(recipes);
}); });
}, },

View file

@ -43,7 +43,6 @@ export default {
methods: { methods: {
async getRecipes() { async getRecipes() {
let data = await api.tags.getRecipesInTag(this.currentTag); let data = await api.tags.getRecipesInTag(this.currentTag);
console.log(data);
this.title = data.name; this.title = data.name;
this.recipes = data.recipes; this.recipes = data.recipes;
}, },