diff --git a/frontend/pages/group/notifiers.vue b/frontend/pages/group/notifiers.vue index 61709331646d..14ab22aeed6d 100644 --- a/frontend/pages/group/notifiers.vue +++ b/frontend/pages/group/notifiers.vue @@ -54,7 +54,7 @@ - + @@ -130,12 +130,12 @@ export default defineComponent({ const notifiers = useAsync(async () => { const { data } = await api.groupEventNotifier.getAll(); - return data ?? []; + return data?.items; }, useAsyncKey()); async function refreshNotifiers() { const { data } = await api.groupEventNotifier.getAll(); - notifiers.value = data ?? []; + notifiers.value = data?.items; } const createNotifierData: GroupEventNotifierCreate = reactive({