Skip to content

Commit 94069e7

Browse files
committed
Fixes #7857: Fix ordering IP addresses by assignment status
1 parent df9d67b commit 94069e7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

docs/release-notes/version-3.0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* [#7739](https://github.com/netbox-community/netbox/issues/7739) - Fix exception when tracing cable across circuit with no far end termination
1717
* [#7813](https://github.com/netbox-community/netbox/issues/7813) - Fix handling of errors during export template rendering
1818
* [#7851](https://github.com/netbox-community/netbox/issues/7851) - Add missing cluster name filter for virtual machines
19+
* [#7857](https://github.com/netbox-community/netbox/issues/7857) - Fix ordering IP addresses by assignment status
1920

2021
---
2122

netbox/ipam/tables/ip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ class IPAddressTable(BaseTable):
323323
verbose_name='NAT (Inside)'
324324
)
325325
assigned = BooleanColumn(
326-
accessor='assigned_object',
326+
accessor='assigned_object_id',
327327
linkify=True,
328328
verbose_name='Assigned'
329329
)

0 commit comments

Comments
 (0)