Automation editor

This is how my automations.yaml looks like :

  • alias: Gefrierschrank
    trigger:

    • platform: template
      value_template: “{{states.sensor.gefrierschrank_temperature.state | float > -10}}”
      action:
      service: notify.Mail
      data:
      title: ‘Gefrierschrank’
      message: ‘Die Temperatur ist {{states.sensor.gefrierschrank_temperature.state}} Grad’
  • alias: Gefriertruhe
    trigger:

    • platform: template
      value_template: “{{states.sensor.gefriertruhe_temperature.state | float > -10}}”
      action:
      service: notify.Mail
      data:
      title: ‘Gefriertruhe’
      message: ‘Die Temperatur ist {{states.sensor.gefriertruhe_temperature.state}} Grad’

These two are working properly.

Opening the editor, it says :
We couldn’t find any editable automations.

Is that the way it should be ?

First point - when posting code, indentation matters so either use the backticks or something like hastebin so people can actually determine what’s wrong with your configuration.

Second - you need to include a unique ID value for each of your automations for the editor to work, see the documentation here: https://home-assistant.io/docs/automation/editor/#migrating-your-automations-to-automationsyaml

Thank you, I saw this right after creating the issue …
Question :
How can I mark an issue as ‘Resolved’ or even delete it again ?
Thanks