Fixes #11383: Sorting search by type doesn't work; more reliable approach

This commit is contained in:
Austin de Coup-Crank 2023-03-22 16:57:23 -05:00
parent 96f43d3e5f
commit 04193b1d5e

View File

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