From ceb9e2ef1d586caf8c063910d80ec18adfcaffa9 Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 28 Nov 2022 10:12:07 +0000 Subject: [PATCH] [WIFI-11751] Fixed max fils-discovery-interval value Signed-off-by: Charles --- package-lock.json | 4 ++-- package.json | 2 +- .../InterfaceSection/interfacesConstants.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 1139d6d..24c5119 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "wlan-cloud-owprov-ui", - "version": "2.8.0(20)", + "version": "2.8.0(21)", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "wlan-cloud-owprov-ui", - "version": "2.8.0(20)", + "version": "2.8.0(21)", "license": "ISC", "dependencies": { "@chakra-ui/icons": "^2.0.11", diff --git a/package.json b/package.json index 492fe33..cd2eb80 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wlan-cloud-owprov-ui", - "version": "2.8.0(20)", + "version": "2.8.0(21)", "description": "", "main": "index.tsx", "scripts": { diff --git a/src/pages/ConfigurationPage/ConfigurationCard/ConfigurationSectionsCard/InterfaceSection/interfacesConstants.js b/src/pages/ConfigurationPage/ConfigurationCard/ConfigurationSectionsCard/InterfaceSection/interfacesConstants.js index 2af0916..2978446 100644 --- a/src/pages/ConfigurationPage/ConfigurationCard/ConfigurationSectionsCard/InterfaceSection/interfacesConstants.js +++ b/src/pages/ConfigurationPage/ConfigurationCard/ConfigurationSectionsCard/InterfaceSection/interfacesConstants.js @@ -405,7 +405,7 @@ export const INTERFACE_SSID_SCHEMA = (t, useDefault = false) => { 'maximum-clients': number().required(t('form.required')).moreThan(0).lessThan(65535).integer().default(64), 'proxy-arp': bool().default(undefined), 'disassoc-low-ack': bool().default(undefined), - 'fils-discovery-interval': number().integer().moreThan(0).lessThan(10001).default(20), + 'fils-discovery-interval': number().integer().moreThan(0).lessThan(21).default(20), 'vendor-elements': string(), encryption: INTERFACE_SSID_ENCRYPTION_SCHEMA(t, useDefault), 'rate-limit': INTERFACE_SSID_RATE_LIMIT_SCHEMA(t),