Skip to content
Snippets Groups Projects
Commit d2033af7 authored by srauscher's avatar srauscher Committed by Xaver Maierhofer
Browse files

[BUGFIX] Change Ghz to GHz (#278)

parent a34812f2
No related branches found
No related tags found
No related merge requests found
...@@ -12,8 +12,8 @@ define(function () { ...@@ -12,8 +12,8 @@ define(function () {
'</p>' + '</p>' +
'<h4>' + _.t('node.clients') + '</h4>' + '<h4>' + _.t('node.clients') + '</h4>' +
'<p class="legend">' + '<p class="legend">' +
'<span class="legend-24ghz"><span class="symbol"></span> 2.4 Ghz</span>' + '<span class="legend-24ghz"><span class="symbol"></span> 2.4 GHz</span>' +
'<span class="legend-5ghz"><span class="symbol"></span> 5 Ghz</span>' + '<span class="legend-5ghz"><span class="symbol"></span> 5 GHz</span>' +
'<span class="legend-others"><span class="symbol"></span> ' + _.t('others') + '</span>' + '<span class="legend-others"><span class="symbol"></span> ' + _.t('others') + '</span>' +
'</p>' + '</p>' +
'<h3>AGPL 3</h3>' + '<h3>AGPL 3</h3>' +
......
...@@ -97,14 +97,14 @@ define(['snabbdom', 'helper', 'moment'], function (V, helper, moment) { ...@@ -97,14 +97,14 @@ define(['snabbdom', 'helper', 'moment'], function (V, helper, moment) {
[ [
d.clients_wifi24, d.clients_wifi24,
V.h('br'), V.h('br'),
V.h('span', { props: { className: 'symbol', title: '2,4 Ghz' } }) V.h('span', { props: { className: 'symbol', title: '2,4 GHz' } })
]), ]),
V.h('span', V.h('span',
{ props: { className: 'legend-5ghz' } }, { props: { className: 'legend-5ghz' } },
[ [
d.clients_wifi5, d.clients_wifi5,
V.h('br'), V.h('br'),
V.h('span', { props: { className: 'symbol', title: '5 Ghz' } }) V.h('span', { props: { className: 'symbol', title: '5 GHz' } })
]), ]),
V.h('span', V.h('span',
{ props: { className: 'legend-others' } }, { props: { className: 'legend-others' } },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment