We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 001c7e4 commit d1e8c06Copy full SHA for d1e8c06
docs/release-notes/version-3.1.md
@@ -9,6 +9,7 @@
9
### Bug Fixes
10
11
* [#7674](https://github.com/netbox-community/netbox/issues/7674) - Fix inadvertent application of device type context to virtual machines
12
+* [#8074](https://github.com/netbox-community/netbox/issues/8074) - Ordering VMs by name should reference naturalized value
13
14
---
15
netbox/virtualization/tables.py
@@ -114,6 +114,7 @@ class Meta(BaseTable.Meta):
114
class VirtualMachineTable(BaseTable):
115
pk = ToggleColumn()
116
name = tables.Column(
117
+ order_by=('_name',),
118
linkify=True
119
)
120
status = ChoiceFieldColumn()
0 commit comments