Merge pull request #221 from stephb9959/main

[OLS-106] Add new asterfusion images
This commit is contained in:
Charles Bourque
2024-06-06 11:56:32 -04:00
committed by GitHub
5 changed files with 5 additions and 3 deletions

4
package-lock.json generated
View File

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

View File

@@ -1,6 +1,6 @@
{
"name": "ucentral-client",
"version": "3.1.0(4)",
"version": "3.1.0(5)",
"description": "",
"private": true,
"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 = () => {
if (!getDevice.data?.compatible) return undefined;
if (getDevice.data.compatible.includes(' ')) return getDevice.data.compatible.replaceAll(' ', '_');
return getDevice.data?.compatible;
};