mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 14:33:33 -07:00
remove console.logs
This commit is contained in:
parent
fbb10b8a5b
commit
c6eaf5ba4c
7 changed files with 0 additions and 12 deletions
|
@ -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;
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -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);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -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() {
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
|
@ -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() {
|
||||||
|
|
|
@ -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);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
|
@ -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;
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue