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
65d6e4560a
commit
20f7c4e684
2 changed files with 0 additions and 9 deletions
|
@ -196,7 +196,6 @@ export default {
|
||||||
this.availableThemes = await api.themes.requestAll();
|
this.availableThemes = await api.themes.requestAll();
|
||||||
},
|
},
|
||||||
editTheme(theme) {
|
editTheme(theme) {
|
||||||
console.log(theme);
|
|
||||||
this.defaultData = theme;
|
this.defaultData = theme;
|
||||||
this.newTheme = false;
|
this.newTheme = false;
|
||||||
this.$refs.themeDialog.open();
|
this.$refs.themeDialog.open();
|
||||||
|
@ -204,11 +203,9 @@ export default {
|
||||||
createTheme() {
|
createTheme() {
|
||||||
this.newTheme = true;
|
this.newTheme = true;
|
||||||
this.$refs.themeDialog.open();
|
this.$refs.themeDialog.open();
|
||||||
console.log("Create Theme");
|
|
||||||
},
|
},
|
||||||
async processSubmit() {
|
async processSubmit() {
|
||||||
if (this.newTheme) {
|
if (this.newTheme) {
|
||||||
console.log("New Theme");
|
|
||||||
await api.themes.create(this.defaultData);
|
await api.themes.create(this.defaultData);
|
||||||
} else {
|
} else {
|
||||||
await api.themes.update(this.defaultData);
|
await api.themes.update(this.defaultData);
|
||||||
|
@ -216,7 +213,6 @@ export default {
|
||||||
this.getAllThemes();
|
this.getAllThemes();
|
||||||
},
|
},
|
||||||
async deleteTheme() {
|
async deleteTheme() {
|
||||||
console.log(this.defaultData);
|
|
||||||
await api.themes.delete(this.defaultData.id);
|
await api.themes.delete(this.defaultData.id);
|
||||||
this.getAllThemes();
|
this.getAllThemes();
|
||||||
},
|
},
|
||||||
|
|
|
@ -131,11 +131,6 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
watch: {
|
|
||||||
showRecipes(val) {
|
|
||||||
console.log(val);
|
|
||||||
},
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
assignFuzzy(val) {
|
assignFuzzy(val) {
|
||||||
this.sortedResults = val;
|
this.sortedResults = val;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue