fix: respect admin site list limit when loading role site options
This commit is contained in:
@@ -162,7 +162,7 @@ async function load() {
|
|||||||
])
|
])
|
||||||
roles.value = rolesRes.data?.items || []
|
roles.value = rolesRes.data?.items || []
|
||||||
systems.value = systemsRes.data?.items || []
|
systems.value = systemsRes.data?.items || []
|
||||||
const sitesRes = await getSites({ limit: 1000, offset: 0 })
|
const sitesRes = await getSites({ limit: 500, offset: 0 })
|
||||||
siteOptions.value = sitesRes.data?.items || []
|
siteOptions.value = sitesRes.data?.items || []
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
error.value = true
|
error.value = true
|
||||||
|
|||||||
Reference in New Issue
Block a user