mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-21 03:27:21 -06:00
Fixes #8074: Ordering VMs by name should reference naturalized value
This commit is contained in:
parent
001c7e4b18
commit
d1e8c06d36
@ -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