Browse Source

Fixes #490: Corrected display of circuit commit rate

Jeremy Stretch 8 years ago
parent
commit
7a558d8332
1 changed files with 2 additions and 2 deletions
  1. 2 2
      netbox/templates/circuits/circuit.html

+ 2 - 2
netbox/templates/circuits/circuit.html

@@ -95,8 +95,8 @@
                 <tr>
                     <td>Commit Rate</td>
                     <td>
-                        {% if circuit.commit_speed %}
-                            {{ circuit.commit_speed_human }}
+                        {% if circuit.commit_rate %}
+                            {{ circuit.commit_rate_human }}
                         {% else %}
                             <span class="text-muted">N/A</span>
                         {% endif %}