From b867fe8b07b4c04e92c19cd607610737665c670c Mon Sep 17 00:00:00 2001 From: wvffle Date: Tue, 15 Nov 2022 13:18:39 +0000 Subject: [PATCH] Fix registered applications not being displayed --- front/src/components/auth/Settings.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/src/components/auth/Settings.vue b/front/src/components/auth/Settings.vue index 495a8ac8a..3f1c6fbe8 100644 --- a/front/src/components/auth/Settings.vue +++ b/front/src/components/auth/Settings.vue @@ -114,7 +114,7 @@ const fetchOwnedApps = async () => { try { const response = await axios.get('oauth/apps/') - ownedApps.value = response.data as Application[] + ownedApps.value = response.data.results as Application[] } catch (error) { logger.error('Error while fetching owned Apps') settings.errors.push(...(error as BackendError).backendErrors)