Automation - Adding Garage Door - Clicking on anything Changes the device

I have myq connected to HA.
I have automation that kicks off when the garage door is open at night between 9pm and 5am.
It alerts us so we know to shut it (daughter comes home late and forgets to close it).

alias: Garage Door Open after 9pm
description: ""
trigger:
  - platform: device
    device_id: d84d873e007c4a46f13e30ddce54066b
    domain: cover
    entity_id: cover.garage_door
    type: opened
condition:
  - condition: time
    after: "21:00:00"
    before: "05:00:00"
    weekday:
      - sun
      - mon
      - tue
      - wed
      - thu
      - fri
      - sat
action:
  - service: notify.mobile_app_sm_n986u
    data:
      message: >-
        Garage Door Opened at {{as_timestamp
        (states.cover.garage_door.last_changed) | timestamp_custom("%-I:%M %p
        (%m-%d-%y)")}}
  - service: notify.mobile_app_pixel_7_pro
    data:
      message: >-
        Garage Door Opened at {{as_timestamp
        (states.cover.garage_door.last_changed) | timestamp_custom("%-I:%M %p
        (%m-%d-%y)")}}
mode: single

Ok, I have NEVER ran into this issue. I am trying to add to this.
Want to add a 30 minute delay and then an if statemen to check if the garage door is still open. If it is, send another notification.
When I add the correct device, the status is closing. So I go to change it, and as soon as I click on ANYTHING in the UI, the garage door device changes to the MyQ device.
If I try and create a new automation, it does the same thing. I have no clue what is causing this.
I am finding if I click out of HA, click on ANY of the 3 elipses, it causes it to change.
This happens when creating new automation also.
What is strange as it is set correctly as my trigger.

Here is me trying to set it up:

Here it is after I click on anything. I am clicking on condition to change it to opened, but I can’t get to it.