summaryrefslogtreecommitdiffhomepage
path: root/modules/luci-mod-dsl/htdocs/luci-static/resources/view/status/dsl
diff options
context:
space:
mode:
authorPaul Donald <newtwen@gmail.com>2023-12-04 16:16:04 +0100
committerGitHub <noreply@github.com>2023-12-04 16:16:04 +0100
commit1e84a03932455e79880e10abc88b92343db8d811 (patch)
treef32a8821adaffe95bb2b7c1d594b3602059add2d /modules/luci-mod-dsl/htdocs/luci-static/resources/view/status/dsl
parentaa1e049f3600f68cf2f52d8a1eb092155bfe8d8a (diff)
parent5f1f31f4665fee4c9f57f2db7df530dafd7aa4be (diff)
Merge pull request #6574 from innovara/patch-1
Fix ATM HEC label on stats.js
Diffstat (limited to 'modules/luci-mod-dsl/htdocs/luci-static/resources/view/status/dsl')
-rw-r--r--modules/luci-mod-dsl/htdocs/luci-static/resources/view/status/dsl/stats.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-mod-dsl/htdocs/luci-static/resources/view/status/dsl/stats.js b/modules/luci-mod-dsl/htdocs/luci-static/resources/view/status/dsl/stats.js
index 5dcdebfd5d..ee9b1d20e1 100644
--- a/modules/luci-mod-dsl/htdocs/luci-static/resources/view/status/dsl/stats.js
+++ b/modules/luci-mod-dsl/htdocs/luci-static/resources/view/status/dsl/stats.js
@@ -154,7 +154,7 @@ return view.extend({
E('h4', {}, [ _('Data Path Counters') ]),
this.renderTable([
- [ _('ATM Header Error Code Errors (HEC-P)'), '%d', data.errors.near.hec, data.errors.far.hec ],
+ [ _('ATM Header Error Control Errors (HEC-P)'), '%d', data.errors.near.hec, data.errors.far.hec ],
[ _('PTM Non Pre-emptive CRC Errors (CRC-P)'), '%d', data.errors.near.crc_p, data.errors.far.crc_p ],
[ _('PTM Pre-emptive CRC Errors (CRCP-P)'), '%d', data.errors.near.crcp_p, data.errors.far.crcp_p ]
]),