luci-mod-status: display full HE rate information
Associated Stations on the status page should also show full HE rate
information which was added by
commit f35e877dc6
("luci-mod-network: add 802.11ax HE support")
However, it was only added to the Wireless page and not to the summary
on the Status page. Add it there as well.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
This commit is contained in:
parent
48599d8d1d
commit
7eeea43df1
1 changed files with 10 additions and 1 deletions
|
@ -28,7 +28,9 @@ return baseclass.extend({
|
|||
var s = '%.1f\xa0%s, %d\xa0%s'.format(rt.rate / 1000, _('Mbit/s'), rt.mhz, _('MHz')),
|
||||
ht = rt.ht, vht = rt.vht,
|
||||
mhz = rt.mhz, nss = rt.nss,
|
||||
mcs = rt.mcs, sgi = rt.short_gi;
|
||||
mcs = rt.mcs, sgi = rt.short_gi,
|
||||
he = rt.he, he_gi = rt.he_gi,
|
||||
he_dcm = rt.he_dcm;
|
||||
|
||||
if (ht || vht) {
|
||||
if (vht) s += ', VHT-MCS\xa0%d'.format(mcs);
|
||||
|
@ -37,6 +39,13 @@ return baseclass.extend({
|
|||
if (sgi) s += ', ' + _('Short GI').replace(/ /g, '\xa0');
|
||||
}
|
||||
|
||||
if (he) {
|
||||
s += ', HE-MCS\xa0%d'.format(mcs);
|
||||
if (nss) s += ', HE-NSS\xa0%d'.format(nss);
|
||||
if (he_gi) s += ', HE-GI\xa0%d'.format(he_gi);
|
||||
if (he_dcm) s += ', HE-DCM\xa0%d'.format(he_dcm);
|
||||
}
|
||||
|
||||
return s;
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue