Avoid fetching unused stats state column for more info (#16141)

This commit is contained in:
J. Nick Koston 2023-04-11 22:00:03 -10:00 committed by GitHub
parent 6a5568ad4f
commit 49a14a7265
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {