Skip to content

Commit 39fd64b

Browse files
committed
Fixes #12570: Disable ordering of synchronized object tables by the synced attribute
1 parent 567285d commit 39fd64b

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

docs/release-notes/version-3.5.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
* [#10686](https://github.com/netbox-community/netbox/issues/10686) - Enable specifying termination object by virtual chassis master when importing cables
2323
* [#12550](https://github.com/netbox-community/netbox/issues/12550) - Fix rear port selection widget under front port creation form
24+
* [#12570](https://github.com/netbox-community/netbox/issues/12570) - Disable ordering of synchronized object tables by the "synced" attribute
2425

2526
---
2627

netbox/extras/tables/tables.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ class ExportTemplateTable(NetBoxTable):
7373
linkify=True
7474
)
7575
is_synced = columns.BooleanColumn(
76+
orderable=False,
7677
verbose_name='Synced'
7778
)
7879

@@ -218,6 +219,7 @@ class ConfigContextTable(NetBoxTable):
218219
verbose_name='Active'
219220
)
220221
is_synced = columns.BooleanColumn(
222+
orderable=False,
221223
verbose_name='Synced'
222224
)
223225

@@ -242,6 +244,7 @@ class ConfigTemplateTable(NetBoxTable):
242244
linkify=True
243245
)
244246
is_synced = columns.BooleanColumn(
247+
orderable=False,
245248
verbose_name='Synced'
246249
)
247250
tags = columns.TagColumn(

0 commit comments

Comments
 (0)