Fix registered applications not being displayed

environments/review-docs-pre-c-zs4ui8/deployments/15563
wvffle 2022-11-15 13:18:39 +00:00 zatwierdzone przez JuniorJPDJ
rodzic 360dcb7ccb
commit b867fe8b07
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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)