Hi,
first many thanks for this great Dashboard.
In using the Dashboard template, the color, given as RGB(r,g,b) is not updated when the payload changes.
Below code, f.e. the msg.payload = RGB(255,0,0) but color not set in the first <p></p>. In the second, the color settings works.
Displaying only {{msg.payload}} shows the RGB value as RGB(255,0,0).
Any hints how to resolve setting the color dynamically?
<!DOCTYPE HTML>
<html>
<body>
<div layout="row" layout-align="space-between">
<p ng-style="{color: '{{msg.payload}}' }">
RGB LED COLOR
</p>
<p ng-style="{color: 'rgb(255,0,0)' }">
RGB LED COLOR
</p>
</div>
</body>
</html>