UI: create network form constantly tries to list domains - which is not permitted for normal users (#9348)

This commit is contained in:
Pearl Dsilva 2024-07-08 02:28:54 -04:00 committed by GitHub
parent b080215c08
commit f35f3f6a96
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -449,7 +449,9 @@ export default {
})
},
fetchData () {
this.fetchDomainData()
if (this.isAdminOrDomainAdmin()) {
this.fetchDomainData()
}
this.fetchZoneData()
this.allowSettingMTU()
},