From 76016391e0a1213454047df00dccd3db001412e7 Mon Sep 17 00:00:00 2001 From: Robbie Trencheny Date: Fri, 20 Jan 2017 22:02:33 -0800 Subject: [PATCH] Fix a bug in cover more info card (#178) Should have been `stop_cover_tilt` not `stop_cover` --- src/more-infos/more-info-cover.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/more-infos/more-info-cover.html b/src/more-infos/more-info-cover.html index 801000b77d..72d95b0d5b 100644 --- a/src/more-infos/more-info-cover.html +++ b/src/more-infos/more-info-cover.html @@ -116,7 +116,7 @@ Polymer({ }, onStopTiltTap: function () { - this.hass.serviceActions.callService('cover', 'stop_cover', + this.hass.serviceActions.callService('cover', 'stop_cover_tilt', { entity_id: this.stateObj.entityId }); }, });