mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Fixes #5484: Fix "tagged" indication in VLAN members list
This commit is contained in:
@ -7,6 +7,7 @@
|
|||||||
* [#5468](https://github.com/netbox-community/netbox/issues/5468) - Fix unlocking secrets from device/VM view
|
* [#5468](https://github.com/netbox-community/netbox/issues/5468) - Fix unlocking secrets from device/VM view
|
||||||
* [#5473](https://github.com/netbox-community/netbox/issues/5473) - Fix alignment of rack names in elevations list
|
* [#5473](https://github.com/netbox-community/netbox/issues/5473) - Fix alignment of rack names in elevations list
|
||||||
* [#5478](https://github.com/netbox-community/netbox/issues/5478) - Fix display of route target description
|
* [#5478](https://github.com/netbox-community/netbox/issues/5478) - Fix display of route target description
|
||||||
|
* [#5484](https://github.com/netbox-community/netbox/issues/5484) - Fix "tagged" indication in VLAN members list
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -104,7 +104,7 @@ VLANGROUP_ADD_VLAN = """
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
VLAN_MEMBER_TAGGED = """
|
VLAN_MEMBER_TAGGED = """
|
||||||
{% if record.untagged_vlan_id == vlan.pk %}
|
{% if record.untagged_vlan_id == object.pk %}
|
||||||
<span class="text-danger"><i class="mdi mdi-close-thick"></i></span>
|
<span class="text-danger"><i class="mdi mdi-close-thick"></i></span>
|
||||||
{% else %}
|
{% else %}
|
||||||
<span class="text-success"><i class="mdi mdi-check-bold"></i></span>
|
<span class="text-success"><i class="mdi mdi-check-bold"></i></span>
|
||||||
|
Reference in New Issue
Block a user