Update description, added background property and check payload before sending

This commit is contained in:
2023-08-26 01:07:58 +02:00
parent 43347936b3
commit d7c17ce066
2 changed files with 15 additions and 2 deletions
+11
View File
@@ -79,4 +79,15 @@
<script type="text/html" data-help-name="ui_button_group">
<p>A simple button group node</p>
<p>
To add buttons, input an array with one of the following objects per button as msg.payload:
```json
{
"label": "Dashboard Button Name",
"payload": {/*The payload that is send when the button is clicked*/},
"active": true, // Optional
"color": "#123456" // Optional
}
```
</p>
</script>