1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #7164: Fix styling of "decommissioned" label for circuits

This commit is contained in:
jeremystretch
2021-09-03 13:52:48 -04:00
parent 0d7986e082
commit 27c0e6dd5e
2 changed files with 2 additions and 1 deletions

View File

@@ -29,7 +29,7 @@ class CircuitStatusChoices(ChoiceSet):
STATUS_PLANNED: 'info',
STATUS_PROVISIONING: 'primary',
STATUS_OFFLINE: 'danger',
STATUS_DECOMMISSIONED: 'default',
STATUS_DECOMMISSIONED: 'secondary',
}