Skip to content

Commit fa63c80

Browse files
committed
fix(table): Fix error when sorting host in InterfaceAssignment
1 parent d15398d commit fa63c80

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

netbox_acls/tables.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ class ACLInterfaceAssignmentTable(NetBoxTable):
9292
direction = ChoiceFieldColumn()
9393
host = tables.TemplateColumn(
9494
template_code=COL_HOST_ASSIGNMENT,
95+
orderable=False,
9596
)
9697
assigned_object = tables.Column(
9798
linkify=True,
@@ -208,3 +209,5 @@ class Meta(NetBoxTable.Meta):
208209
"destination_ports",
209210
"protocol",
210211
)
212+
213+

0 commit comments

Comments
 (0)