From 6b99fb0404af35671c2db67f2cba0a8c760df302 Mon Sep 17 00:00:00 2001 From: proddy Date: Thu, 10 Oct 2024 21:20:36 +0100 Subject: [PATCH] add icon for Scheduler --- interface/src/app/main/DeviceIcon.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/interface/src/app/main/DeviceIcon.tsx b/interface/src/app/main/DeviceIcon.tsx index b498f6316..ad921aacf 100644 --- a/interface/src/app/main/DeviceIcon.tsx +++ b/interface/src/app/main/DeviceIcon.tsx @@ -3,6 +3,7 @@ import { CgSmartHomeBoiler } from 'react-icons/cg'; import { FaSolarPanel } from 'react-icons/fa'; import { GiHeatHaze, GiTap } from 'react-icons/gi'; import { MdPlaylistAdd } from 'react-icons/md'; +import { MdMoreTime } from 'react-icons/md'; import { MdOutlineDevices, MdOutlinePool, @@ -38,7 +39,7 @@ const deviceIconLookup: { [DeviceType.CUSTOM]: MdPlaylistAdd, [DeviceType.UNKNOWN]: undefined, [DeviceType.SYSTEM]: undefined, - [DeviceType.SCHEDULER]: undefined, + [DeviceType.SCHEDULER]: MdMoreTime, [DeviceType.GENERIC]: undefined, [DeviceType.VENTILATION]: undefined };