Fix whirlpool type comparison
This commit is contained in:
parent
af89238999
commit
8917402888
1 changed files with 1 additions and 1 deletions
|
|
@ -633,7 +633,7 @@ const config: Config = {
|
||||||
position: [1413, 500],
|
position: [1413, 500],
|
||||||
icon: mdi("pool"),
|
icon: mdi("pool"),
|
||||||
iconColor: ({whirlpoolBubbles}) =>
|
iconColor: ({whirlpoolBubbles}) =>
|
||||||
(whirlpoolBubbles > 0 ? hex("#00ff00") : hex("#000000")),
|
(parseInt(whirlpoolBubbles) > 0 ? hex("#00ff00") : hex("#000000")),
|
||||||
ui: [
|
ui: [
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue