Handle condition shorthands in trace graphs (#12533)

This commit is contained in:
Thomas Lovén 2022-05-01 17:59:46 +02:00 committed by GitHub
parent 1369c1ae8c
commit a571fb5528
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -111,6 +111,9 @@ export class HatScriptGraph extends LitElement {
private typeRenderers = {
condition: this.render_condition_node,
and: this.render_condition_node,
or: this.render_condition_node,
not: this.render_condition_node,
delay: this.render_delay_node,
event: this.render_event_node,
scene: this.render_scene_node,