From 39373fc53f05e5f4e0e3e71b76d5fcde177d40fe Mon Sep 17 00:00:00 2001 From: Jason Novinger Date: Thu, 29 May 2025 11:34:08 -0500 Subject: [PATCH] Make TunnelTerminationTable.termination GFK field non-orderable --- netbox/vpn/tables/tunnels.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/netbox/vpn/tables/tunnels.py b/netbox/vpn/tables/tunnels.py index 94f65e573..d23317ac0 100644 --- a/netbox/vpn/tables/tunnels.py +++ b/netbox/vpn/tables/tunnels.py @@ -89,7 +89,8 @@ class TunnelTerminationTable(TenancyColumnsMixin, NetBoxTable): ) termination = tables.Column( verbose_name=_('Tunnel interface'), - linkify=True + linkify=True, + orderable=False, ) ip_addresses = columns.ManyToManyColumn( accessor=tables.A('termination__ip_addresses'),