Fix interactions translation in area card editor (#26218)

This commit is contained in:
Paul Bottein 2025-07-18 16:00:02 +02:00 committed by GitHub
parent 51b79b33fb
commit 9461634670
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -495,6 +495,7 @@ export class HuiAreaCardEditor
case "name": case "name":
case "camera_view": case "camera_view":
case "content": case "content":
case "interactions":
return this.hass!.localize( return this.hass!.localize(
`ui.panel.lovelace.editor.card.generic.${schema.name}` `ui.panel.lovelace.editor.card.generic.${schema.name}`
); );
@ -502,7 +503,6 @@ export class HuiAreaCardEditor
return this.hass!.localize( return this.hass!.localize(
"ui.panel.lovelace.editor.action-editor.navigation_path" "ui.panel.lovelace.editor.action-editor.navigation_path"
); );
case "interactions":
case "features_position": case "features_position":
return this.hass!.localize( return this.hass!.localize(
`ui.panel.lovelace.editor.card.tile.${schema.name}` `ui.panel.lovelace.editor.card.tile.${schema.name}`