[OLS-106] Add new asterfusion images

Signed-off-by: Charles <charles.bourque96@gmail.com>
This commit is contained in:
Charles
2024-06-06 11:55:56 -04:00
parent 4738097178
commit 6f9f6638d6
5 changed files with 5 additions and 3 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "ucentral-client", "name": "ucentral-client",
"version": "3.1.0(4)", "version": "3.1.0(5)",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "ucentral-client", "name": "ucentral-client",
"version": "3.1.0(4)", "version": "3.1.0(5)",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@chakra-ui/anatomy": "^2.1.1", "@chakra-ui/anatomy": "^2.1.1",

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 355 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 467 KiB

View File

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