Sfoglia il codice sorgente

Fix ordering on JobTable. #14223

Chris Mills 2 anni fa
parent
commit
dfef89ab88
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  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'),