File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments