Event_template_reloaded not updating sensor

I found a simple work around!
Just create simple automation to monitor the event_template_reloaded event and then fire a my_event_template_reloaded event. That event will trigger your template entity, if you add the my_ prefix.

The automation:

alias: Template reloaded
description: ""
trigger:
  - platform: event
    event_type: event_template_reloaded
condition: []
action:
  - event: my_event_template_reloaded
    event_data: {}
mode: single

The trigger in the template entity:

  - platform: event
    event_type: my_event_template_reloaded