remove console.logs

This commit is contained in:
hay-kot 2021-05-06 05:23:47 -08:00
commit 20f7c4e684
2 changed files with 0 additions and 9 deletions

View file

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

View file

@ -131,11 +131,6 @@ export default {
} }
}, },
}, },
watch: {
showRecipes(val) {
console.log(val);
},
},
methods: { methods: {
assignFuzzy(val) { assignFuzzy(val) {
this.sortedResults = val; this.sortedResults = val;