mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Fixes #5042: Fix display of SLAAC label for IP addresses status
This commit is contained in:
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
* [#5035](https://github.com/netbox-community/netbox/issues/5035) - Fix exception when modifying an IP address assigned to a VM
|
* [#5035](https://github.com/netbox-community/netbox/issues/5035) - Fix exception when modifying an IP address assigned to a VM
|
||||||
* [#5038](https://github.com/netbox-community/netbox/issues/5038) - Fix validation of primary IPs assigned to virtual machines
|
* [#5038](https://github.com/netbox-community/netbox/issues/5038) - Fix validation of primary IPs assigned to virtual machines
|
||||||
|
* [#5042](https://github.com/netbox-community/netbox/issues/5042) - Fix display of SLAAC label for IP addresses status
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -669,6 +669,7 @@ class IPAddress(ChangeLoggedModel, CustomFieldModel):
|
|||||||
'reserved': 'info',
|
'reserved': 'info',
|
||||||
'deprecated': 'danger',
|
'deprecated': 'danger',
|
||||||
'dhcp': 'success',
|
'dhcp': 'success',
|
||||||
|
'slaac': 'success',
|
||||||
}
|
}
|
||||||
|
|
||||||
ROLE_CLASS_MAP = {
|
ROLE_CLASS_MAP = {
|
||||||
|
Reference in New Issue
Block a user