Compare commits

..

5 Commits

Author SHA1 Message Date
TIP Automation User
fa2b923111 Chg: update image tag in helm values to v3.0.2-RC1 2024-03-22 12:32:07 +00:00
jaspreetsachdev
9b56a5ea87 Merge pull request #217 from Telecominfraproject/WIFI-13542
Wifi 13542
2024-03-22 08:27:20 -04:00
Carsten Schafer
2ec6837dce Merge remote-tracking branch 'origin/main' into release/v3.0.0 2024-03-21 16:58:51 -04:00
TIP Automation User
9e3df09fb2 Chg: update image tag in helm values to v3.0.0 2023-12-29 15:19:32 +00:00
TIP Automation User
2445935627 Chg: update image tag in helm values to v3.0.0-RC1 2023-11-27 17:38:20 +00:00
11 changed files with 15 additions and 36 deletions

View File

@@ -8,7 +8,7 @@ fullnameOverride: ""
images:
owgwui:
repository: tip-tip-wlan-cloud-ucentral.jfrog.io/owgw-ui
tag: v3.1.0-RC1
tag: v3.0.2-RC1
pullPolicy: Always
services:

21
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "ucentral-client",
"version": "3.1.0(5)",
"version": "3.0.2(9)",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "ucentral-client",
"version": "3.1.0(5)",
"version": "3.0.2(9)",
"license": "ISC",
"dependencies": {
"@chakra-ui/anatomy": "^2.1.1",
@@ -5671,9 +5671,8 @@
"license": "MIT"
},
"node_modules/ejs": {
"version": "3.1.10",
"resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.10.tgz",
"integrity": "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==",
"version": "3.1.8",
"license": "Apache-2.0",
"dependencies": {
"jake": "^10.8.5"
},
@@ -6683,9 +6682,9 @@
}
},
"node_modules/follow-redirects": {
"version": "1.15.6",
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz",
"integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==",
"version": "1.15.4",
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.4.tgz",
"integrity": "sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==",
"funding": [
{
"type": "individual",
@@ -10443,9 +10442,9 @@
}
},
"node_modules/vite": {
"version": "4.5.3",
"resolved": "https://registry.npmjs.org/vite/-/vite-4.5.3.tgz",
"integrity": "sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==",
"version": "4.5.2",
"resolved": "https://registry.npmjs.org/vite/-/vite-4.5.2.tgz",
"integrity": "sha512-tBCZBNSBbHQkaGyhGCDUGqeo2ph8Fstyp6FMSvTtsXeZSPpSMGlviAOav2hxVTqFcx8Hj/twtWKsMJXNY0xI8w==",
"dependencies": {
"esbuild": "^0.18.10",
"postcss": "^8.4.27",

View File

@@ -1,6 +1,6 @@
{
"name": "ucentral-client",
"version": "3.1.0(5)",
"version": "3.0.2(9)",
"description": "",
"private": true,
"main": "index.tsx",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 294 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 394 KiB

View File

@@ -173,7 +173,7 @@ const DeviceActionDropdown = ({
isLoading={isRtty}
onClick={handleConnectClick}
colorScheme={connectColor}
hidden={isCompact}
hidden={isCompact || deviceType !== 'ap'}
/>
</Tooltip>
<Tooltip label={t('controller.configure.title')}>

View File

@@ -25,7 +25,6 @@ import { useTranslation } from 'react-i18next';
import { Modal } from '../Modal';
import { lowercaseFirstLetter } from 'helpers/stringHelper';
import { useTelemetry } from 'hooks/Network/Telemetry';
import { secondsDuration } from 'helpers/dateFormatting';
export type TelemetryModalProps = {
serialNumber: string;
@@ -147,7 +146,8 @@ const _TelemetryModal = ({ serialNumber, modalProps }: TelemetryModalProps) => {
{t('controller.telemetry.interval')}: {form.interval} {lowercaseFirstLetter(t('common.seconds'))}
</p>
<p>
{t('controller.telemetry.duration')}: {secondsDuration(form.lifetime, t)}
{t('controller.telemetry.duration')}: {form.interval}{' '}
{lowercaseFirstLetter(t('controller.telemetry.minutes'))}
</p>
<p>
{t('controller.telemetry.types')}: {form.types.join(', ')}

View File

@@ -59,7 +59,6 @@ export type DeviceInterfaceStatistics = {
dynamic_vlan?: number;
inactive: number;
ipaddr_v4: string;
fingerprint?: object;
rssi: number;
rx_bytes: number;
rx_duration: number;

View File

@@ -65,8 +65,6 @@ const DeviceSummary = ({ serialNumber }: Props) => {
const getDeviceCompatible = () => {
if (!getDevice.data?.compatible) return undefined;
if (getDevice.data.compatible.includes(' ')) return getDevice.data.compatible.replaceAll(' ', '_');
return getDevice.data?.compatible;
};

View File

@@ -28,7 +28,6 @@ export type ParsedAssociation = {
txNss: number | string;
recorded: number;
dynamicVlan?: number;
fingerprint?: object;
};
type Props = {
@@ -78,14 +77,6 @@ const WifiAnalysisAssociationsTable = ({ data, ouis, isSingle }: Props) => {
isMonospace: true,
alwaysShow: true,
},
{
id: 'ssid',
Header: 'SSID',
Footer: '',
accessor: 'ssid',
customWidth: '35px',
alwaysShow: true,
},
{
id: 'ips',
Header: 'IPs',
@@ -93,13 +84,6 @@ const WifiAnalysisAssociationsTable = ({ data, ouis, isSingle }: Props) => {
Cell: (v) => ipCell(v.cell.row.original),
disableSortBy: true,
},
{
id: 'fingerprint',
Header: 'Fingerprint',
Footer: '',
Cell: (v) => Object.values(v.cell.row.original.fingerprint ?? {}).join(', '),
disableSortBy: true,
},
{
id: 'vendor',
Header: t('controller.wifi.vendor'),

View File

@@ -105,7 +105,6 @@ const parseAssociations = (data: { data: DeviceStatistics; recorded: number }, r
txNss: association.tx_rate.nss ?? '-',
recorded: data.recorded,
dynamicVlan: association.dynamic_vlan,
fingerprint: association.fingerprint,
});
}
}