1
0
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:
Jeremy Stretch
2020-12-17 09:46:50 -05:00
parent 2fba20acda
commit 26426c1431
2 changed files with 2 additions and 1 deletions

View File

@ -104,7 +104,7 @@ VLANGROUP_ADD_VLAN = """
"""
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>
{% else %}
<span class="text-success"><i class="mdi mdi-check-bold"></i></span>