status web: Fix listeners rx byte rates calculation

This commit is contained in:
Heikki Hannikainen 2016-12-25 15:50:17 +02:00
parent f6e35a01df
commit 81e51d5bc9
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@
<td>{{ l.bytes_tx }}</td>
<td>{{ l.bytes_rx }}</td>
<td><span ng-show='status.tick_dif'>{{ (l.bytes_tx - status_prev.listeners_id[l.id].bytes_tx) / status.tick_dif | ratestr }}
/ {{ (l.bytes_rx - status_prev.clisteners_id[l.id].bytes_rx) / status.tick_dif | ratestr }}</span></td>
/ {{ (l.bytes_rx - status_prev.listeners_id[l.id].bytes_rx) / status.tick_dif | ratestr }}</span></td>
</tr>
</table>
</div>