Fixes #11383: Sorting search by type doesn't work

This commit is contained in:
Austin de Coup-Crank 2023-03-22 16:23:07 -05:00
parent 8d25d7812c
commit 96f43d3e5f

View File

@ -200,7 +200,8 @@ class NetBoxTable(BaseTable):
class SearchTable(tables.Table):
object_type = columns.ContentTypeColumn(
verbose_name=_('Type')
verbose_name=_('Type'),
order_by="object_type_id",
)
object = tables.Column(
linkify=True