feat(ui): ipam - update assign form field display

This commit is contained in:
songlh 2024-12-06 15:53:19 +08:00
parent f575291a1f
commit f5dc53e5b8
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ export default {
if (attrList.length) { if (attrList.length) {
_.remove(attrList, (item) => { _.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') const assingStatusIndex = attrList.findIndex((attr) => attr.name === 'assign_status')