mirror of
https://github.com/home-assistant/frontend.git
synced 2026-02-04 01:10:33 -06:00
Fix incorrect (Disabled) string in trigger (#27935)
This commit is contained in:
parent
97e49f751c
commit
09bdfd3ad7
@ -63,8 +63,7 @@ export default class HaAutomationSidebarTrigger extends LitElement {
|
||||
|
||||
protected render() {
|
||||
const rowDisabled =
|
||||
this.disabled ||
|
||||
("enabled" in this.config.config && this.config.config.enabled === false);
|
||||
"enabled" in this.config.config && this.config.config.enabled === false;
|
||||
const type = isTriggerList(this.config.config)
|
||||
? "list"
|
||||
: this.config.config.trigger;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user