diff --git a/docs/release-notes/version-3.0.md b/docs/release-notes/version-3.0.md index 7dda58d7e..fffb247b2 100644 --- a/docs/release-notes/version-3.0.md +++ b/docs/release-notes/version-3.0.md @@ -5,6 +5,7 @@ * [#7131](https://github.com/netbox-community/netbox/issues/7131) - Fix issue where Site fields were hidden when editing a VLAN group * [#7148](https://github.com/netbox-community/netbox/issues/7148) - Fix issue where static query parameters with multiple values were not queried properly * [#7153](https://github.com/netbox-community/netbox/issues/7153) - Allow clearing of assigned device type images +* [#7164](https://github.com/netbox-community/netbox/issues/7164) - Fix styling of "decommissioned" label for circuits * [#7169](https://github.com/netbox-community/netbox/issues/7169) - Fix CSV import file upload --- diff --git a/netbox/circuits/choices.py b/netbox/circuits/choices.py index bbf536800..0efa431fa 100644 --- a/netbox/circuits/choices.py +++ b/netbox/circuits/choices.py @@ -29,7 +29,7 @@ class CircuitStatusChoices(ChoiceSet): STATUS_PLANNED: 'info', STATUS_PROVISIONING: 'primary', STATUS_OFFLINE: 'danger', - STATUS_DECOMMISSIONED: 'default', + STATUS_DECOMMISSIONED: 'secondary', }