15106 review comments

This commit is contained in:
Arthur Hanson 2024-06-14 15:42:16 -07:00
parent e11b4a29c0
commit e63736667c
2 changed files with 2 additions and 2 deletions

View File

@ -109,7 +109,7 @@ class CableTable(TenancyColumnsMixin, NetBoxTable):
status = columns.ChoiceFieldColumn()
length = columns.TemplateColumn(
template_code=CABLE_LENGTH,
order_by=('_abs_length', 'length_unit')
order_by=('_abs_length')
)
color = columns.ColorColumn()
comments = columns.MarkdownColumn()

View File

@ -39,7 +39,7 @@ class WirelessLinkTable(TenancyColumnsMixin, NetBoxTable):
)
distance = columns.TemplateColumn(
template_code=WIRELESS_LINK_DISTANCE,
order_by=('_abs_distance', 'distance_unit')
order_by=('_abs_distance')
)
tags = columns.TagColumn(
url_name='wireless:wirelesslink_list'