mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw-ui.git
synced 2025-10-29 09:52:31 +00:00
Compare commits
3 Commits
v3.2.1-RC2
...
WIFI-7818-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f55e8cfe7e | ||
|
|
9ae67c751c | ||
|
|
9e23b51dd0 |
@@ -8,7 +8,7 @@ fullnameOverride: ""
|
||||
images:
|
||||
owgwui:
|
||||
repository: tip-tip-wlan-cloud-ucentral.jfrog.io/owgw-ui
|
||||
tag: main
|
||||
tag: v2.5.0
|
||||
pullPolicy: Always
|
||||
|
||||
services:
|
||||
|
||||
@@ -23,7 +23,7 @@ const WifiAnalysisTable = ({ t, data, loading }) => {
|
||||
};
|
||||
const columns = [
|
||||
{ key: 'radio', label: '#', _style: { width: '1%' } },
|
||||
{ key: 'bssid', label: 'BSSID', _style: { width: '1%' } },
|
||||
{ key: 'station', label: 'Station ID', _style: { width: '1%' } },
|
||||
{ key: 'vendor', label: t('wifi_analysis.vendor'), _style: { width: '15%' }, sorter: false },
|
||||
{ key: 'mode', label: t('wifi_analysis.mode'), _style: { width: '1%' }, sorter: false },
|
||||
{ key: 'ssid', label: 'SSID', _style: { width: '15%' } },
|
||||
@@ -84,12 +84,12 @@ const WifiAnalysisTable = ({ t, data, loading }) => {
|
||||
sorter
|
||||
sorterValue={{ column: 'radio', asc: true }}
|
||||
scopedSlots={{
|
||||
bssid: (item) => (
|
||||
station: (item) => (
|
||||
<td
|
||||
className="text-center align-middle"
|
||||
style={{ fontFamily: 'monospace', fontSize: '0.96rem' }}
|
||||
>
|
||||
{item.bssid}
|
||||
{item.station}
|
||||
</td>
|
||||
),
|
||||
radio: (item) => <td className="text-center align-middle">{item.radio.radio}</td>,
|
||||
|
||||
@@ -147,12 +147,12 @@ const WifiAnalysis = () => {
|
||||
|
||||
if ('associations' in ssid) {
|
||||
for (const association of ssid.associations) {
|
||||
bssidObj[association.bssid] = 0;
|
||||
bssidObj[association.station] = 0;
|
||||
|
||||
const data = {
|
||||
radio: radioInfo,
|
||||
...extractIp(stat.data, association.bssid),
|
||||
bssid: association.bssid,
|
||||
station: association.station,
|
||||
ssid: ssid.ssid,
|
||||
rssi: association.rssi ? parseDbm(association.rssi) : '-',
|
||||
mode: ssid.mode,
|
||||
@@ -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