Skip to content

Commit

Permalink
Fixes #16444: Disable ordering circuits list by A/Z termination
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Jun 17, 2024
1 parent b077c66 commit d2a8e52
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions netbox/circuits/tables/circuits.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,12 @@ class CircuitTable(TenancyColumnsMixin, ContactsColumnMixin, NetBoxTable):
status = columns.ChoiceFieldColumn()
termination_a = tables.TemplateColumn(
template_code=CIRCUITTERMINATION_LINK,
orderable=False,
verbose_name=_('Side A')
)
termination_z = tables.TemplateColumn(
template_code=CIRCUITTERMINATION_LINK,
orderable=False,
verbose_name=_('Side Z')
)
commit_rate = CommitRateColumn(
Expand Down

0 comments on commit d2a8e52

Please sign in to comment.