Skip to content

Commit b3cde51

Browse files
committed
Fixes #6562: Disable ordering of secrets by assigned object
1 parent 6ec296f commit b3cde51

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

docs/release-notes/version-2.11.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Bug Fixes
66

77
* [#6553](https://github.com/netbox-community/netbox/issues/6553) - ProviderNetwork search should match on name
8+
* [#6562](https://github.com/netbox-community/netbox/issues/6562) - Disable ordering of secrets by assigned object
89
* [#6563](https://github.com/netbox-community/netbox/issues/6563) - Fix filtering by location for cable connection forms
910

1011
---

netbox/secrets/tables.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ class SecretTable(BaseTable):
3737
)
3838
assigned_object = tables.Column(
3939
linkify=True,
40+
orderable=False,
4041
verbose_name='Assigned object'
4142
)
4243
role = tables.Column(

0 commit comments

Comments
 (0)