1
0
mirror of https://github.com/home-assistant/frontend.git synced 2026-02-15 07:25:54 +00:00

Fix indentation

This commit is contained in:
Adam Mills
2016-07-25 18:31:20 -04:00
parent e006ad9835
commit 1203312ac3
2 changed files with 10 additions and 10 deletions

View File

@@ -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();
},
];
},
},

View File

@@ -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();
},
];
},
},