mirror of
https://github.com/optim-enterprises-bv/OptimCloud-gw-ui.git
synced 2025-10-29 17:32:20 +00:00
2.6.9: wifi analysis vendor value fix
This commit is contained in:
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "ucentral-client",
|
||||
"version": "2.6.8",
|
||||
"version": "2.6.9",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "ucentral-client",
|
||||
"version": "2.6.8",
|
||||
"version": "2.6.9",
|
||||
"dependencies": {
|
||||
"@coreui/coreui": "^3.4.0",
|
||||
"@coreui/icons": "^2.0.1",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ucentral-client",
|
||||
"version": "2.6.8",
|
||||
"version": "2.6.9",
|
||||
"dependencies": {
|
||||
"@coreui/coreui": "^3.4.0",
|
||||
"@coreui/icons": "^2.0.1",
|
||||
|
||||
@@ -147,7 +147,7 @@ const WifiAnalysis = () => {
|
||||
|
||||
if ('associations' in ssid) {
|
||||
for (const association of ssid.associations) {
|
||||
bssidObj[association.bssid] = 0;
|
||||
bssidObj[association.station] = 0;
|
||||
|
||||
const data = {
|
||||
radio: radioInfo,
|
||||
@@ -181,7 +181,7 @@ const WifiAnalysis = () => {
|
||||
for (let i = 0; i < newParsedAssociationStats.length; i += 1) {
|
||||
for (let y = 0; y < newParsedAssociationStats[i].length; y += 1) {
|
||||
newParsedAssociationStats[i][y].vendor =
|
||||
vendors[newParsedAssociationStats[i][y].bssid] ?? '-';
|
||||
vendors[newParsedAssociationStats[i][y].station] ?? '-';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user