From b77372fc9a8662e5e75adfaf53cc065de1025aba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Lov=C3=A9n?= Date: Tue, 30 Jul 2019 20:55:37 +0200 Subject: [PATCH] Display history-graph entries in the order they were specified (#3436) --- src/panels/lovelace/cards/hui-history-graph-card.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panels/lovelace/cards/hui-history-graph-card.js b/src/panels/lovelace/cards/hui-history-graph-card.js index 737eaa8891..453ffe22ab 100644 --- a/src/panels/lovelace/cards/hui-history-graph-card.js +++ b/src/panels/lovelace/cards/hui-history-graph-card.js @@ -75,7 +75,7 @@ class HuiHistoryGraphCard extends PolymerElement { this.setProperties({ _cacheConfig: { - cacheKey: _entities.sort().join(), + cacheKey: _entities.join(), hoursToShow: config.hours_to_show || 24, refresh: config.refresh_interval || 0, },