From 0c9aae8aeca97603db0db4cff37351ebde2d1cfd Mon Sep 17 00:00:00 2001 From: Stabilostick Date: Sat, 1 Feb 2025 11:42:53 +0100 Subject: [PATCH] Change number of possible signals to six Is it possible to allow more than 3 active signals? Eg. 6 would be nice (like a dice). This commit is not testet, it's just wishfull thinking. I did not check for implications. Signed-off-by: Stabilostick --- packages/iobroker.vis-2/src-vis/src/Attributes/Widget/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/iobroker.vis-2/src-vis/src/Attributes/Widget/index.tsx b/packages/iobroker.vis-2/src-vis/src/Attributes/Widget/index.tsx index f56b8ba1..30a3d583 100644 --- a/packages/iobroker.vis-2/src-vis/src/Attributes/Widget/index.tsx +++ b/packages/iobroker.vis-2/src-vis/src/Attributes/Widget/index.tsx @@ -389,7 +389,7 @@ class Widget extends Component { label: 'signals-count', type: 'select', // noTranslation: true, - options: ['0', '1', '2', '3'], + options: ['0', '1', '2', '3', '4', '5', '6'], default: '0', immediateChange: true, },