mirror of
https://github.com/optim-enterprises-bv/OptimCloud-gw-ui.git
synced 2025-10-30 17:57:46 +00:00
New icons for AP and Switch
This commit is contained in:
BIN
src/assets/icons/AP.png
Normal file
BIN
src/assets/icons/AP.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.0 KiB |
BIN
src/assets/icons/Switch.png
Normal file
BIN
src/assets/icons/Switch.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.6 KiB |
@@ -19,7 +19,8 @@ import { getToken } from '../utils/authHelper';
|
||||
import axiosInstance from '../utils/axiosInstance';
|
||||
import { cleanBytesString, cropStringWithEllipsis } from '../utils/helper';
|
||||
import iotIcon from '../assets/icons/iot.png';
|
||||
import internetSwitch from '../assets/icons/networkswitch.png';
|
||||
import apIcon from '../assets/icons/AP.png';
|
||||
import internetSwitch from '../assets/icons/Switch.png';
|
||||
|
||||
const DeviceList = () => {
|
||||
const [loadedSerials, setLoadedSerials] = useState(false);
|
||||
@@ -150,9 +151,10 @@ const DeviceListDisplay = ({ devices, loading, updateDevicesPerPage, pageCount,
|
||||
|
||||
const getDeviceIcon = (deviceType) => {
|
||||
if (deviceType === 'AP_Default') {
|
||||
return <CIcon name="cilRouter" size="2xl" alt="AP" />;
|
||||
return <img src={apIcon} style={{ height: '32px', width: '32px' }} alt="IOT" />;
|
||||
// return <CIcon name="cilRouter" size="2xl" alt="AP" />;
|
||||
}
|
||||
if (deviceType === 'IOT') {
|
||||
if (deviceType === 'MESH') {
|
||||
return <img src={iotIcon} style={{ height: '32px', width: '32px' }} alt="IOT" />;
|
||||
}
|
||||
if (deviceType === 'SWITCH') {
|
||||
|
||||
Reference in New Issue
Block a user