Merge pull request #177 from stephb9959/main

[WIFI-12515] Display simulated status in device table
This commit is contained in:
Charles Bourque
2023-04-18 11:47:51 +02:00
committed by GitHub
3 changed files with 4 additions and 3 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "ucentral-client", "name": "ucentral-client",
"version": "2.10.0(19)", "version": "2.10.0(20)",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "ucentral-client", "name": "ucentral-client",
"version": "2.10.0(19)", "version": "2.10.0(20)",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@chakra-ui/icons": "^2.0.18", "@chakra-ui/icons": "^2.0.18",

View File

@@ -1,6 +1,6 @@
{ {
"name": "ucentral-client", "name": "ucentral-client",
"version": "2.10.0(19)", "version": "2.10.0(20)",
"description": "", "description": "",
"private": true, "private": true,
"main": "index.tsx", "main": "index.tsx",

View File

@@ -65,6 +65,7 @@ const BADGE_COLORS: Record<string, string> = {
NO_CERTIFICATE: 'red', NO_CERTIFICATE: 'red',
MISMATCH_SERIAL: 'yellow', MISMATCH_SERIAL: 'yellow',
VERIFIED: 'green', VERIFIED: 'green',
SIMULATED: 'purple',
}; };
const DeviceListCard = () => { const DeviceListCard = () => {