diff options
author | Florian Eckert <fe@dev.tdt.de> | 2024-04-22 16:06:20 +0200 |
---|---|---|
committer | Florian Eckert <fe@dev.tdt.de> | 2024-04-23 14:13:32 +0200 |
commit | fd9ba1cda8055eb3e12a50ea6b186dc379ad7a51 (patch) | |
tree | 577ad003dc9424335c62d93c08bfc2251fc9ae8f /modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js | |
parent | f79634dc3e18671b3a2fd992d67d0c68fadd84dc (diff) |
luci-mod-status: add missing cbi-map-descr for realtime graph bandwith
Redmine-patch-id: 8463
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
Diffstat (limited to 'modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js')
-rw-r--r-- | modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js index 0fbe49c12c..4bdc9e2675 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/bandwidth.js @@ -309,7 +309,11 @@ return view.extend({ this.pollData(); - return v; + return E([], [ + E('h2', _('Bandwith')), + E('div', {'class': 'cbi-map-descr'}, _('This page displays the bandwidth used for all available physical interfaces.')), + v + ]); }, handleSaveApply: null, |