Added frontend icon for simple_alarm
parent
00e1ecb5ad
commit
756425f7b4
|
@ -1,2 +1,2 @@
|
|||
""" DO NOT MODIFY. Auto-generated by build_frontend script """
|
||||
VERSION = "12ba7bca8ad0c196cb04ada4fe85a76b"
|
||||
VERSION = "f0d938f2a01a613e9fa0beb44940713d"
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -28,23 +28,28 @@
|
|||
return "image:flash-on";
|
||||
|
||||
case "chromecast":
|
||||
if(state && state != "idle") {
|
||||
return "hardware:cast-connected";
|
||||
} else {
|
||||
return "hardware:cast";
|
||||
var icon = "hardware:cast";
|
||||
|
||||
if (state !== "idle") {
|
||||
icon += "-connected";
|
||||
}
|
||||
|
||||
return icon;
|
||||
|
||||
case "process":
|
||||
return "hardware:memory"
|
||||
return "hardware:memory";
|
||||
|
||||
case "sun":
|
||||
return "image:wb-sunny"
|
||||
return "image:wb-sunny";
|
||||
|
||||
case "light":
|
||||
return "image:wb-incandescent"
|
||||
return "image:wb-incandescent";
|
||||
|
||||
case "tellstick_sensor":
|
||||
return "trending-up";
|
||||
return "trending-up";
|
||||
|
||||
case "simple_alarm":
|
||||
return "social:notifications";
|
||||
|
||||
default:
|
||||
return "bookmark-outline";
|
||||
|
|
Loading…
Reference in New Issue