mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-15 19:52:52 -06:00
Fixes #7164: Fix styling of "decommissioned" label for circuits
This commit is contained in:
parent
0d7986e082
commit
27c0e6dd5e
@ -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
|
* [#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
|
* [#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
|
* [#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
|
* [#7169](https://github.com/netbox-community/netbox/issues/7169) - Fix CSV import file upload
|
||||||
|
|
||||||
---
|
---
|
||||||
|
@ -29,7 +29,7 @@ class CircuitStatusChoices(ChoiceSet):
|
|||||||
STATUS_PLANNED: 'info',
|
STATUS_PLANNED: 'info',
|
||||||
STATUS_PROVISIONING: 'primary',
|
STATUS_PROVISIONING: 'primary',
|
||||||
STATUS_OFFLINE: 'danger',
|
STATUS_OFFLINE: 'danger',
|
||||||
STATUS_DECOMMISSIONED: 'default',
|
STATUS_DECOMMISSIONED: 'secondary',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user