Hi everyone, I'm getting the following warnings in Home Assistant:
Template variable error: 'context' is undefined when rendering '{{ 'DISMISS_' ~ context.id }}'
Template variable error: 'context' is undefined when rendering '{{ 'CONFIRM_' ~ context.id }}'
Template variable warning: 'action_dismiss' is undefined when rendering '{{ action_dismiss }}'
Template variable error: 'wait' is undefined when rendering '{{ wait.trigger.event.data.action == action_confirm }}'
Template variable error: 'wait' is undefined when rendering '{{ wait.trigger.event.data.action == action_dismiss }}'
By searching with grep, I found these references in this file:
./blueprints/script/homeassistant/confirmable_notification.yaml
It seems that some template variables (context, action_dismiss, wait) are not defined when rendering. Has anyone encountered this before or knows how to fix it?