ソースを参照

Fixes #11562: Correct ordering of virtual chassis interfaces with duplicate names

jeremystretch 3 年 前
コミット
d5ccda355f
2 ファイル変更1 行追加1 行削除
  1. 1 0
      docs/release-notes/version-3.4.md
  2. 0 1
      netbox/dcim/tables/devices.py

+ 1 - 0
docs/release-notes/version-3.4.md

@@ -6,6 +6,7 @@
 
 * [#11487](https://github.com/netbox-community/netbox/issues/11487) - Remove "set null" option from non-writable custom fields during bulk edit
 * [#11555](https://github.com/netbox-community/netbox/issues/11555) - Avoid inadvertent interpretation of search query as regular expression under global search (previously [#11516](https://github.com/netbox-community/netbox/issues/11516))
+* [#11562](https://github.com/netbox-community/netbox/issues/11562) - Correct ordering of virtual chassis interfaces with duplicate names
 
 ---
 

+ 0 - 1
netbox/dcim/tables/devices.py

@@ -580,7 +580,6 @@ class DeviceInterfaceTable(InterfaceTable):
             'wireless_lans', 'link_peer', 'connection', 'tags', 'vdcs', 'vrf', 'l2vpn', 'ip_addresses', 'fhrp_groups',
             'untagged_vlan', 'tagged_vlans', 'actions',
         )
-        order_by = ('name',)
         default_columns = (
             'pk', 'name', 'label', 'enabled', 'type', 'parent', 'lag', 'mtu', 'mode', 'description', 'ip_addresses',
             'cable', 'connection',