mirror of
https://github.com/home-assistant/frontend.git
synced 2025-07-24 09:46:36 +00:00
Fix icon header labels in Automations, Scene and Script tables (#21214)
Change icon header labels
This commit is contained in:
parent
dcd4c39978
commit
cbc95a5e2d
@ -265,7 +265,7 @@ class HaAutomationPicker extends SubscribeMixin(LitElement) {
|
||||
const columns: DataTableColumnContainer<AutomationItem> = {
|
||||
icon: {
|
||||
title: "",
|
||||
label: localize("ui.panel.config.automation.picker.headers.state"),
|
||||
label: localize("ui.panel.config.automation.picker.headers.icon"),
|
||||
type: "icon",
|
||||
moveable: false,
|
||||
showNarrow: true,
|
||||
|
@ -243,7 +243,7 @@ class HaSceneDashboard extends SubscribeMixin(LitElement) {
|
||||
const columns: DataTableColumnContainer<SceneItem> = {
|
||||
icon: {
|
||||
title: "",
|
||||
label: localize("ui.panel.config.scene.picker.headers.state"),
|
||||
label: localize("ui.panel.config.scene.picker.headers.icon"),
|
||||
moveable: false,
|
||||
showNarrow: true,
|
||||
type: "icon",
|
||||
|
@ -252,7 +252,7 @@ class HaScriptPicker extends SubscribeMixin(LitElement) {
|
||||
title: "",
|
||||
showNarrow: true,
|
||||
moveable: false,
|
||||
label: localize("ui.panel.config.script.picker.headers.state"),
|
||||
label: localize("ui.panel.config.script.picker.headers.icon"),
|
||||
type: "icon",
|
||||
template: (script) =>
|
||||
html`<ha-state-icon
|
||||
|
@ -2733,7 +2733,8 @@
|
||||
"actions": "Actions",
|
||||
"state": "State",
|
||||
"category": "Category",
|
||||
"area": "Area"
|
||||
"area": "Area",
|
||||
"icon": "Icon"
|
||||
},
|
||||
"bulk_action": "Action",
|
||||
"bulk_actions": {
|
||||
@ -3608,7 +3609,8 @@
|
||||
"name": "Name",
|
||||
"state": "State",
|
||||
"category": "Category",
|
||||
"area": "Area"
|
||||
"area": "Area",
|
||||
"icon": "Icon"
|
||||
},
|
||||
"edit_category": "[%key:ui::panel::config::automation::picker::edit_category%]",
|
||||
"assign_category": "[%key:ui::panel::config::automation::picker::assign_category%]",
|
||||
@ -3727,7 +3729,8 @@
|
||||
"name": "Name",
|
||||
"last_activated": "Last activated",
|
||||
"category": "Category",
|
||||
"area": "Area"
|
||||
"area": "Area",
|
||||
"icon": "Icon"
|
||||
},
|
||||
"edit_category": "[%key:ui::panel::config::automation::picker::edit_category%]",
|
||||
"assign_category": "[%key:ui::panel::config::automation::picker::assign_category%]",
|
||||
|
Loading…
x
Reference in New Issue
Block a user