Compare commits

...

3 Commits

Author SHA1 Message Date
Charles
f55e8cfe7e Hotfix for BSSID -> Station ID bug 2022-04-29 15:35:16 +01:00
TIP Automation User
9ae67c751c Chg: update image tag in helm values to v2.5.0 2022-03-30 13:48:24 +00:00
TIP Automation User
9e23b51dd0 Chg: update image tag in helm values to v2.5.0-RC1 2022-02-11 16:02:49 +00:00
3 changed files with 7 additions and 7 deletions

View File

@@ -8,7 +8,7 @@ fullnameOverride: ""
images: images:
owgwui: owgwui:
repository: tip-tip-wlan-cloud-ucentral.jfrog.io/owgw-ui repository: tip-tip-wlan-cloud-ucentral.jfrog.io/owgw-ui
tag: main tag: v2.5.0
pullPolicy: Always pullPolicy: Always
services: services:

View File

@@ -23,7 +23,7 @@ const WifiAnalysisTable = ({ t, data, loading }) => {
}; };
const columns = [ const columns = [
{ key: 'radio', label: '#', _style: { width: '1%' } }, { 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: 'vendor', label: t('wifi_analysis.vendor'), _style: { width: '15%' }, sorter: false },
{ key: 'mode', label: t('wifi_analysis.mode'), _style: { width: '1%' }, sorter: false }, { key: 'mode', label: t('wifi_analysis.mode'), _style: { width: '1%' }, sorter: false },
{ key: 'ssid', label: 'SSID', _style: { width: '15%' } }, { key: 'ssid', label: 'SSID', _style: { width: '15%' } },
@@ -84,12 +84,12 @@ const WifiAnalysisTable = ({ t, data, loading }) => {
sorter sorter
sorterValue={{ column: 'radio', asc: true }} sorterValue={{ column: 'radio', asc: true }}
scopedSlots={{ scopedSlots={{
bssid: (item) => ( station: (item) => (
<td <td
className="text-center align-middle" className="text-center align-middle"
style={{ fontFamily: 'monospace', fontSize: '0.96rem' }} style={{ fontFamily: 'monospace', fontSize: '0.96rem' }}
> >
{item.bssid} {item.station}
</td> </td>
), ),
radio: (item) => <td className="text-center align-middle">{item.radio.radio}</td>, radio: (item) => <td className="text-center align-middle">{item.radio.radio}</td>,

View File

@@ -147,12 +147,12 @@ const WifiAnalysis = () => {
if ('associations' in ssid) { if ('associations' in ssid) {
for (const association of ssid.associations) { for (const association of ssid.associations) {
bssidObj[association.bssid] = 0; bssidObj[association.station] = 0;
const data = { const data = {
radio: radioInfo, radio: radioInfo,
...extractIp(stat.data, association.bssid), ...extractIp(stat.data, association.bssid),
bssid: association.bssid, station: association.station,
ssid: ssid.ssid, ssid: ssid.ssid,
rssi: association.rssi ? parseDbm(association.rssi) : '-', rssi: association.rssi ? parseDbm(association.rssi) : '-',
mode: ssid.mode, mode: ssid.mode,
@@ -181,7 +181,7 @@ const WifiAnalysis = () => {
for (let i = 0; i < newParsedAssociationStats.length; i += 1) { for (let i = 0; i < newParsedAssociationStats.length; i += 1) {
for (let y = 0; y < newParsedAssociationStats[i].length; y += 1) { for (let y = 0; y < newParsedAssociationStats[i].length; y += 1) {
newParsedAssociationStats[i][y].vendor = newParsedAssociationStats[i][y].vendor =
vendors[newParsedAssociationStats[i][y].bssid] ?? '-'; vendors[newParsedAssociationStats[i][y].station] ?? '-';
} }
} }