We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ec296f commit b3cde51Copy full SHA for b3cde51
docs/release-notes/version-2.11.md
@@ -5,6 +5,7 @@
5
### Bug Fixes
6
7
* [#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
9
* [#6563](https://github.com/netbox-community/netbox/issues/6563) - Fix filtering by location for cable connection forms
10
11
---
netbox/secrets/tables.py
@@ -37,6 +37,7 @@ class SecretTable(BaseTable):
37
)
38
assigned_object = tables.Column(
39
linkify=True,
40
+ orderable=False,
41
verbose_name='Assigned object'
42
43
role = tables.Column(
0 commit comments