mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 14:33:33 -07:00
cleanup
This commit is contained in:
parent
c5636a03e7
commit
f45107b4f2
4 changed files with 3 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -22,7 +22,6 @@ export default {
|
|||
this.$store.commit("setSnackbar", val);
|
||||
},
|
||||
get() {
|
||||
console.log(this.$store.getters.getSnackbar);
|
||||
return this.$store.getters.getSnackbar;
|
||||
},
|
||||
},
|
||||
|
|
|
@ -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;
|
||||
},
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
const state = {
|
||||
snackbar: {
|
||||
open: true,
|
||||
open: false,
|
||||
text: "Hello From The Store",
|
||||
color: "info",
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue