From b6ad4edd32add5f95c64dc16f76b09335e219b5b Mon Sep 17 00:00:00 2001 From: Boyi C Date: Sat, 10 Feb 2018 16:08:04 +0800 Subject: [PATCH] Fix missing arguments in history-data. (#880) --- src/data/ha-state-history-data.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/ha-state-history-data.html b/src/data/ha-state-history-data.html index a2ef584741..87e6ff9cda 100644 --- a/src/data/ha-state-history-data.html +++ b/src/data/ha-state-history-data.html @@ -141,7 +141,7 @@ super.connectedCallback(); this.filterChanged( this.filterType, this.entityId, this.startTime, this.endTime, - this.cacheConfig + this.cacheConfig, this.localize, this.language ); } @@ -157,7 +157,7 @@ if (!oldHass && !this._madeFirstCall) { this.filterChanged( this.filterType, this.entityId, this.startTime, this.endTime, - this.cacheConfig + this.cacheConfig, this.localize, this.language ); } }