diff --git a/homeassistant/components/http/frontend.py b/homeassistant/components/http/frontend.py
index 0392f4b5c78..ed7199d1a93 100644
--- a/homeassistant/components/http/frontend.py
+++ b/homeassistant/components/http/frontend.py
@@ -1,2 +1,2 @@
""" DO NOT MODIFY. Auto-generated by build_frontend script """
-VERSION = "12ba7bca8ad0c196cb04ada4fe85a76b"
+VERSION = "f0d938f2a01a613e9fa0beb44940713d"
diff --git a/homeassistant/components/http/www_static/frontend.html b/homeassistant/components/http/www_static/frontend.html
index 322cba2605f..d9e0e9f0e81 100644
--- a/homeassistant/components/http/www_static/frontend.html
+++ b/homeassistant/components/http/www_static/frontend.html
@@ -55,9 +55,9 @@ if(this.removeAttribute(a),d)return j(this,a,c);var e=c,f=m(this,a,e);return j(t
undefined
-
{{label}}
{{label}}
![]()
++
{{stateObj.entityDisplay}}
{{lastChangedFromNow(stateObj.last_changed)}}
diff --git a/homeassistant/components/http/www_static/polymer/domain-icon.html b/homeassistant/components/http/www_static/polymer/domain-icon.html
index 4d73608d3a0..5c3afac8d97 100644
--- a/homeassistant/components/http/www_static/polymer/domain-icon.html
+++ b/homeassistant/components/http/www_static/polymer/domain-icon.html
@@ -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";