From 717eec1860f0ed5d12079fffc317be4f1e23b31b Mon Sep 17 00:00:00 2001 From: Philip Allgaier Date: Mon, 4 Apr 2022 15:39:28 +0200 Subject: [PATCH] Allow "none" again as secondary entity information (#12199) --- .../editor/config-elements/hui-generic-entity-row-editor.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/panels/lovelace/editor/config-elements/hui-generic-entity-row-editor.ts b/src/panels/lovelace/editor/config-elements/hui-generic-entity-row-editor.ts index e8c524cfdf..ed49622a37 100644 --- a/src/panels/lovelace/editor/config-elements/hui-generic-entity-row-editor.ts +++ b/src/panels/lovelace/editor/config-elements/hui-generic-entity-row-editor.ts @@ -15,6 +15,7 @@ import type { LovelaceRowEditor } from "../../types"; import { entitiesConfigStruct } from "../structs/entities-struct"; const SecondaryInfoValues: { [key: string]: { domains?: string[] } } = { + none: {}, "entity-id": {}, "last-changed": {}, "last-updated": {},