1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-03 04:25:24 +02:00

fix failing build

This commit is contained in:
hay-kot 2021-08-08 21:15:20 -08:00
parent bde885dc84
commit 625dbcdea5
7 changed files with 16 additions and 21 deletions

View file

@ -31,7 +31,9 @@ export default defineComponent({
},
methods: {
assignSorted(val: Array<Recipe>) {
this.category.recipes = val;
if (this.category) {
this.category.recipes = val;
}
},
},
});

View file

@ -31,7 +31,9 @@ export default defineComponent({
},
methods: {
assignSorted(val: Array<Recipe>) {
this.tag.recipes = val;
if (this.tag) {
this.tag.recipes = val;
}
},
},
});