luci-mod-status: cosmetic fix for isWPSEnabled in wifi status

Drop isWPSEnabled table as it's really not needed and can directly
included in the network table.

Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
(cherry picked from commit 2a97d5533c)
This commit is contained in:
Ansuel Smith 2021-09-18 16:17:27 +02:00 committed by Jo-Philipp Wich
parent 9da9d65c35
commit 2fe3d0ab4a

View file

@ -121,7 +121,7 @@ return baseclass.extend({
var WPS_button = null;
if (this.isWPSEnabled[net.sid]) {
if (net.isWPSEnabled) {
if (net.wps_status == 'Active') {
WPS_button = E('button', {
'class' : 'cbi-button cbi-button-remove',
@ -190,7 +190,7 @@ return baseclass.extend({
}, this, radios_networks_hints[i])));
if (hasWPS && uci.get('wireless', radios_networks_hints[i].sid, 'wps_pushbutton') == '1') {
this.isWPSEnabled[radios_networks_hints[i].sid] = true;
radios_networks_hints[i].isWPSEnabled = true;
tasks.push(L.resolveDefault(this.handleGetWPSStatus(radios_networks_hints[i].getIfname()), null)
.then(L.bind(function(net, data) {
net.wps_status = data ? data.pbc_status : _('No Data');
@ -204,8 +204,6 @@ return baseclass.extend({
}, this));
},
isDeviceAdded: {},
render: function(data) {
var seen = {},
radios = data[0],