From 1203312ac33d32860807a734171e2452bb4a196e Mon Sep 17 00:00:00 2001 From: Adam Mills Date: Mon, 25 Jul 2016 18:31:20 -0400 Subject: [PATCH] Fix indentation --- panels/history/ha-panel-history.html | 10 +++++----- panels/logbook/ha-panel-logbook.html | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/panels/history/ha-panel-history.html b/panels/history/ha-panel-history.html index a31ae46d33..51239a25db 100644 --- a/panels/history/ha-panel-history.html +++ b/panels/history/ha-panel-history.html @@ -100,11 +100,11 @@ Polymer({ value: null, bindNuclear: function (hass) { return [ - hass.entityHistoryGetters.currentDate, - function (currentDate) { - var dateObj = new Date(currentDate); - return dateObj.toLocaleDateString(); - }, + hass.entityHistoryGetters.currentDate, + function (currentDate) { + var dateObj = new Date(currentDate); + return dateObj.toLocaleDateString(); + }, ]; }, }, diff --git a/panels/logbook/ha-panel-logbook.html b/panels/logbook/ha-panel-logbook.html index 915a0c2410..fb246d8282 100644 --- a/panels/logbook/ha-panel-logbook.html +++ b/panels/logbook/ha-panel-logbook.html @@ -82,11 +82,11 @@ Polymer({ value: null, bindNuclear: function (hass) { return [ - hass.logbookGetters.currentDate, - function (currentDate) { - var dateObj = new Date(currentDate); - return dateObj.toLocaleDateString(); - }, + hass.logbookGetters.currentDate, + function (currentDate) { + var dateObj = new Date(currentDate); + return dateObj.toLocaleDateString(); + }, ]; }, },