fix: ref_only_access was inverted

This commit is contained in:
Julian Krauser 2025-03-14 07:40:30 +01:00
parent 58a26cfb02
commit 7a300d93b6

View file

@ -48,7 +48,7 @@ const { data: pages } = await useAsyncData("pages", () =>
},
},
filters: {
...(active_page_id.value == "" ? { slug: params[0], ref_only_access: true } : {}),
...(active_page_id.value == "" ? { slug: params[0], ref_only_access: false } : {}),
},
})
);