diff --git a/src/pages/network/containers/VirtualAdapter/index.jsx b/src/pages/network/containers/VirtualAdapter/index.jsx index 7211c596..734ba16d 100644 --- a/src/pages/network/containers/VirtualAdapter/index.jsx +++ b/src/pages/network/containers/VirtualAdapter/index.jsx @@ -163,7 +163,7 @@ export default class VirtualAdapter extends Base { <> {item.device_owner} {item.device_owner &&
} - {item.device_id} + {item.device_id || '-'} ); }, @@ -199,6 +199,14 @@ export default class VirtualAdapter extends Base { dataIndex: 'mac_address', isHideable: true, }, + { + title: t('Floating IP Address'), + dataIndex: 'associatedDetail', + isHideable: true, + render: (value) => + value && value.length ? value[0].floating_ip_address : '-', + sorter: false, + }, // { // title: t('Associated Resources'), // dataIndex: 'device_owner',