Skip to content
Snippets Groups Projects
Commit 0bb530d1 authored by Nils Schneider's avatar Nils Schneider
Browse files

gluon-status-page: fix display of rx and tx traffic

On the status page statistics section counters for transmitted and received traffic were mixed up. Transmitted traffic was shown as received while received traffic was shown as being transmitted.

Fixes #586
parent 108a1116
No related branches found
No related tags found
No related merge requests found
...@@ -252,8 +252,8 @@ define(["lib/helper"], function (Helper) { ...@@ -252,8 +252,8 @@ define(["lib/helper"], function (Helper) {
table = document.createElement("table") table = document.createElement("table")
mkTrafficRow(table, children, "Gesendet", stream, ".traffic.rx") mkTrafficRow(table, children, "Gesendet", stream, ".traffic.tx")
mkTrafficRow(table, children, "Empfangen", stream, ".traffic.tx") mkTrafficRow(table, children, "Empfangen", stream, ".traffic.rx")
mkTrafficRow(table, children, "Weitergeleitet", stream, ".traffic.forward") mkTrafficRow(table, children, "Weitergeleitet", stream, ".traffic.forward")
el.appendChild(table) el.appendChild(table)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment