mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-27 19:08:38 -06:00
Fixes #8074: Ordering VMs by name should reference naturalized value
This commit is contained in:
parent
b354f73afc
commit
e5c742f73d
@ -9,6 +9,7 @@
|
||||
### Bug Fixes
|
||||
|
||||
* [#7674](https://github.com/netbox-community/netbox/issues/7674) - Fix inadvertent application of device type context to virtual machines
|
||||
* [#8074](https://github.com/netbox-community/netbox/issues/8074) - Ordering VMs by name should reference naturalized value
|
||||
|
||||
---
|
||||
|
||||
|
@ -114,6 +114,7 @@ class ClusterTable(BaseTable):
|
||||
class VirtualMachineTable(BaseTable):
|
||||
pk = ToggleColumn()
|
||||
name = tables.Column(
|
||||
order_by=('_name',),
|
||||
linkify=True
|
||||
)
|
||||
status = ChoiceFieldColumn()
|
||||
|
Loading…
Reference in New Issue
Block a user