From 87c58cc62d07572f35e0e845dcbc09d16b099c11 Mon Sep 17 00:00:00 2001 From: Armilar <102996011+Armilar@users.noreply.github.com> Date: Tue, 12 Aug 2025 13:05:04 +0200 Subject: [PATCH] v4.9.5.1 - DEV Update NSPanelTs.ts Small fixes --- ioBroker/DEV/NSPanelTs.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ioBroker/DEV/NSPanelTs.ts b/ioBroker/DEV/NSPanelTs.ts index 9a185a3c..57ece702 100644 --- a/ioBroker/DEV/NSPanelTs.ts +++ b/ioBroker/DEV/NSPanelTs.ts @@ -5851,7 +5851,11 @@ function CreateEntity (pageItem: PageItem, placeId: number, useColors: boolean = if (pageItem.useValue) { if (pageItem.fontSize != undefined) { - iconId = optVal + '¬' + pageItem.fontSize; + if (pageItem.suffixName == undefined) { + iconId = optVal + '¬' + pageItem.fontSize; + } else { + iconId = optVal + pageItem.suffixName + '¬' + pageItem.fontSize; + } } else { iconId = optVal; } @@ -12109,7 +12113,10 @@ function GenerateDetailPage (type: NSPanel.PopupType, optional: NSPanel.mediaOpt actualState + '~' + optionalString, + + }); + GeneratePage(activePage!); } } else if (role == 'buttonSensor') {