From 49a14a7265f2233ab234abdf9e3a61e722d88f75 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 11 Apr 2023 22:00:03 -1000 Subject: [PATCH] Avoid fetching unused stats state column for more info (#16141) --- src/dialogs/more-info/ha-more-info-history.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dialogs/more-info/ha-more-info-history.ts b/src/dialogs/more-info/ha-more-info-history.ts index f9e14f6338..464d0a0e09 100644 --- a/src/dialogs/more-info/ha-more-info-history.ts +++ b/src/dialogs/more-info/ha-more-info-history.ts @@ -27,7 +27,7 @@ declare global { } } -const statTypes: StatisticsTypes = ["state", "min", "mean", "max"]; +const statTypes: StatisticsTypes = ["min", "mean", "max"]; @customElement("ha-more-info-history") export class MoreInfoHistory extends LitElement {