Fix const declaration

This commit is contained in:
Paulus Schoutsen 2016-06-14 09:11:10 -07:00
parent ec7dfb28e8
commit e63bcc1567

View File

@ -47,7 +47,7 @@
}, },
getAttributeValue: function (stateObj, attribute) { getAttributeValue: function (stateObj, attribute) {
const value = stateObj.attributes[attribute]; var value = stateObj.attributes[attribute];
return Array.isArray(value) ? value.join(', ') : value; return Array.isArray(value) ? value.join(', ') : value;
}, },