Merge pull request #650 from veops/dev_ui_241206

feat(ui): ipam - update assign form field display
This commit is contained in:
Leo Song 2024-12-06 15:54:02 +08:00 committed by GitHub
commit 05181dbed3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ export default {
if (attrList.length) {
_.remove(attrList, (item) => {
return ['subnet_mask', 'gateway', 'name', 'mac_address', 'is_used', 'ip'].includes(item.name)
return ['subnet_mask', 'gateway', 'name', 'mac_address', 'is_used', 'ip', 'ipam_address_id'].includes(item.name)
})
const assingStatusIndex = attrList.findIndex((attr) => attr.name === 'assign_status')