This commit is contained in:
hay-kot 2021-05-07 14:26:23 -08:00
commit f45107b4f2
4 changed files with 3 additions and 6 deletions

View file

@ -59,7 +59,7 @@
- All images are now converted to .webp for better compression
### General
- New 'Dark' Theme Packages with Mealie
- New 'Dark' Color Theme Packaged with Mealie
- Updated Recipe Card Sections Toolbar
- New Sort Options (They work this time!)
- Alphabetical
@ -82,6 +82,7 @@
- Improved styling for search bar in desktop
- Improved search layout on mobile
- Profile image now shown on all sidebars
- Switched from Flash Messages to Snackbar (Removed dependency
### Behind the Scenes
- Black and Flake8 now run as CI/CD checks

View file

@ -22,7 +22,6 @@ export default {
this.$store.commit("setSnackbar", val);
},
get() {
console.log(this.$store.getters.getSnackbar);
return this.$store.getters.getSnackbar;
},
},

View file

@ -38,7 +38,6 @@ export default {
},
watch: {
async TagOrCategory() {
console.log(this.currentCategory, this.currentTag);
this.sortedResults = [];
this.getRecipes();
},
@ -50,7 +49,6 @@ export default {
methods: {
async getRecipes() {
if (!this.TagOrCategory === null) return;
console.log(this.TagOrCategory);
let data = {};
if (this.currentCategory) {
@ -58,7 +56,6 @@ export default {
} else {
data = await api.tags.getRecipesInTag(this.TagOrCategory);
}
console.log(data);
this.title = data.name;
this.recipes = data.recipes;
},

View file

@ -1,6 +1,6 @@
const state = {
snackbar: {
open: true,
open: false,
text: "Hello From The Store",
color: "info",
},