Fix automation traces (#23524)

This commit is contained in:
Bram Kragten
2024-12-31 17:02:57 +01:00
committed by GitHub
parent d08a28ab9e
commit eaab47a667
3 changed files with 15 additions and 10 deletions

View File

@@ -20,8 +20,8 @@ export class HatGraphNode extends LitElement {
@property({ attribute: false, reflect: true, type: Boolean }) notEnabled =
false;
@property({ attribute: false, reflect: true, type: Boolean }) graphStart =
false;
@property({ attribute: "graph-start", reflect: true, type: Boolean })
graphStart = false;
@property({ type: Boolean, attribute: "nofocus" }) noFocus = false;
@@ -112,7 +112,7 @@ export class HatGraphNode extends LitElement {
var(--hat-graph-node-size) + var(--hat-graph-spacing) + 1px
);
}
:host([graphStart]) {
:host([graph-start]) {
height: calc(var(--hat-graph-node-size) + 2px);
}
:host([track]) {