Browse Source

Fix ordering on JobTable. #14223

Chris Mills 2 năm trước cách đây
mục cha
commit
dfef89ab88
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      netbox/core/tables/jobs.py

+ 2 - 1
netbox/core/tables/jobs.py

@@ -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'),