diff --git a/src/panels/lovelace/editor/config-elements/hui-gauge-card-editor.ts b/src/panels/lovelace/editor/config-elements/hui-gauge-card-editor.ts index de72b02709..1b7d734940 100644 --- a/src/panels/lovelace/editor/config-elements/hui-gauge-card-editor.ts +++ b/src/panels/lovelace/editor/config-elements/hui-gauge-card-editor.ts @@ -17,7 +17,7 @@ import "../../components/hui-entity-editor"; const cardConfigStruct = struct({ type: "string", - title: "string?", + name: "string?", entity: "string?", unit: "string?", min: "number?", @@ -42,8 +42,8 @@ export class HuiGaugeCardEditor extends hassLocalizeLitMixin(LitElement) return { hass: {}, _config: {} }; } - get _title(): string { - return this._config!.title || ""; + get _name(): string { + return this._config!.name || ""; } get _entity(): string { @@ -80,9 +80,9 @@ export class HuiGaugeCardEditor extends hassLocalizeLitMixin(LitElement)