1
0
Fork 0
mirror of synced 2024-10-03 02:27:06 +13:00

fix issue where oidc config form was not loading due to oidc_logos being undefined

This commit is contained in:
Peter Clement 2021-07-08 11:15:22 +01:00
parent 2e49686eab
commit 99de767781

View file

@ -135,9 +135,11 @@
}
//Get the list of user uploaded logos and push it to the dropdown options.
//This needs to be done before the config callso they're available when the dropdown renders
//This needs to be done before the config call so they're available when the dropdown renders
const res = await api.get(`/api/admin/configs/oidc_logos`)
const configSettings = await res.json()
if (configSettings.config) {
const logoKeys = Object.keys(configSettings.config)
logoKeys.map(logoKey => {
@ -148,7 +150,7 @@
icon: logoUrl,
})
})
}
const oidcResponse = await api.get(`/api/admin/configs/${ConfigTypes.OIDC}`)
const oidcDoc = await oidcResponse.json()