Bladeren bron

Closes #11015: Remove unit from commit rate column header in circuits table

jeremystretch 2 jaren geleden
bovenliggende
commit
4a331b560f
2 gewijzigde bestanden met toevoegingen van 4 en 1 verwijderingen
  1. 1 0
      docs/release-notes/version-3.4.md
  2. 3 1
      netbox/circuits/tables/circuits.py

+ 1 - 0
docs/release-notes/version-3.4.md

@@ -5,6 +5,7 @@
 ### Enhancements
 
 * [#10600](https://github.com/netbox-community/netbox/issues/10600) - Allow custom object fields to reference a user or group
+* [#11015](https://github.com/netbox-community/netbox/issues/11015) - Remove unit from commit rate column header in circuits table
 * [#11431](https://github.com/netbox-community/netbox/issues/11431) - Disallow changing custom field type after creation
 * [#11453](https://github.com/netbox-community/netbox/issues/11453) - Display a warning banner when `DEBUG` is enabled
 * [#12007](https://github.com/netbox-community/netbox/issues/12007) - Enable filtering of VM Interfaces by assigned VLAN

+ 3 - 1
netbox/circuits/tables/circuits.py

@@ -57,7 +57,9 @@ class CircuitTable(TenancyColumnsMixin, ContactsColumnMixin, NetBoxTable):
         template_code=CIRCUITTERMINATION_LINK,
         verbose_name='Side Z'
     )
-    commit_rate = CommitRateColumn()
+    commit_rate = CommitRateColumn(
+        verbose_name='Commit Rate'
+    )
     comments = columns.MarkdownColumn()
     tags = columns.TagColumn(
         url_name='circuits:circuit_list'