mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-28 08:44:36 -04:00
feat: Filter Recipes By Household (and a ton of bug fixes) (#4207)
Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
This commit is contained in:
@@ -127,9 +127,9 @@ export default defineComponent({
|
||||
|
||||
const items = computed(() => {
|
||||
if (!props.returnObject) {
|
||||
return store.items.value.map((item) => item.name);
|
||||
return store.store.value.map((item) => item.name);
|
||||
}
|
||||
return store.items.value;
|
||||
return store.store.value;
|
||||
});
|
||||
|
||||
function removeByIndex(index: number) {
|
||||
|
||||
Reference in New Issue
Block a user