Skip to content

Commit

Permalink
Fix ordering on JobTable. netbox-community#14223
Browse files Browse the repository at this point in the history
  • Loading branch information
cpmills1975 committed Nov 9, 2023
1 parent 60e9832 commit 72fd6f1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion netbox/core/tables/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ class JobTable(NetBoxTable):
)
object = tables.Column(
verbose_name=_('Object'),
linkify=True
linkify=True,
orderable=False
)
status = columns.ChoiceFieldColumn(
verbose_name=_('Status'),
Expand Down

0 comments on commit 72fd6f1

Please sign in to comment.