Fix registered applications not being displayed
This commit is contained in:
parent
360dcb7ccb
commit
b867fe8b07
|
@ -114,7 +114,7 @@ const fetchOwnedApps = async () => {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const response = await axios.get('oauth/apps/')
|
const response = await axios.get('oauth/apps/')
|
||||||
ownedApps.value = response.data as Application[]
|
ownedApps.value = response.data.results as Application[]
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
logger.error('Error while fetching owned Apps')
|
logger.error('Error while fetching owned Apps')
|
||||||
settings.errors.push(...(error as BackendError).backendErrors)
|
settings.errors.push(...(error as BackendError).backendErrors)
|
||||||
|
|
Loading…
Reference in New Issue