diff options
author | Martin Schitter <ms+git@mur.at> | 2021-11-05 19:05:56 +0100 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2021-11-05 20:30:10 +0200 |
commit | b0279f474e983e6e46e5b58df1332bf697d32a87 (patch) | |
tree | 4a78c955ee8e844e5cbc809000c06891fe674f8e /applications | |
parent | d9fe9bf67a7332c7fdd0ac2739873ddce608029a (diff) |
luci-app-statistics: trivial fix of wrong varible name
Signed-off-by: Martin Schitter <ms+git@mur.at>
[Fixed the commit title]
Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'applications')
-rw-r--r-- | applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/olsrd.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/olsrd.js b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/olsrd.js index 93cb266dc0..19e217ab95 100644 --- a/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/olsrd.js +++ b/applications/luci-app-statistics/htdocs/luci-static/resources/statistics/rrdtool/definitions/olsrd.js @@ -86,7 +86,7 @@ return baseclass.extend({ opts = {}; opts[dsn1] = { color: "00ff00", title: "LQ (%s)".format(host) }; - opts[dns2] = { color: "0000ff", title: "NLQ (%s)".format(host), flip: true }; + opts[dsn2] = { color: "0000ff", title: "NLQ (%s)".format(host), flip: true }; g.push({ title: "%H: Signal Quality (%s)".format(host), vlabel: "ETX", |