Lovelace & Frigate images not working

  • Installation methodHome Assistant OS
  • Core2025.10.3
  • Supervisor2025.10.0
  • Operating System16.2
  • Frontend20251001.4

I have a lovelace screen up running as sort of a kiosk. On it I have two images coming from Frigate. The problem I am having is the images seem to vanish with an error message.

Some times both images are displayed, some times one or the other (changes which one constantly) some times neither image shows up.

Does anyone else have this problem? Is there a fix for the problem? Am I just doing something monumentally wrong? (Seriously still a NOOB so any critique of my methods are OK)

Greg

the code I am using is:

views:
  - title: Home Control
    path: home-control
    icon: mdi:view-dashboard-edit
    theme: M3-07-DarkOliveGreen
    type: custom:grid-layout
    layout:
      grid-template-columns: 20% 20% 20% 20% 20%
      grid-template-rows: auto
      grid-template-areas: |
        "headleft headleft head headright headright"
        "info1 info2 info3 info4 info4"
        "left leftmid middle rightwide rightwide"
        "leftfoot leftfoot leftfoot rightfoot rightfoot"
    badges: []
    cards:
      - type: vertical-stack
        cards:
          - type: custom:weather-card
            entity: weather.homeassist
            number_of_forecasts: '14'
            hourly_forecast: true
            name: Winnipeg
        view_layout:
          grid-area: leftfoot
      - type: vertical-stack
        cards:
          - clock_style: digital
            clock_size: small
            time_format: '12'
            show_seconds: true
            no_background: false
            type: clock
          - show_name: true
            show_icon: false
            type: button
            entity: sensor.rlc_810a_day_night_state
            icon: mdi:weather-hail
            name: Weather Details
            hold_action:
              action: none
            tap_action:
              action: perform-action
              perform_action: script.turn_on
              target:
                entity_id: script.flip_dashboards
              data: {}
            theme: Caule Dark Aqua
          - show_name: true
            show_icon: false
            type: button
            entity: light.front_porch_overhead_light
            name: Lights and Switchs
            icon: ''
            tap_action:
              action: perform-action
              perform_action: script.turn_on
              target:
                entity_id: script.1760022911724
              data: {}
            theme: Caule Black Blue Glass
        title: Sub Screens
        view_layout:
          grid-area: head
      - type: vertical-stack
        cards:
          - type: entities
            entities:
              - entity: sensor.17track_delivered
                secondary_info: last-changed
              - entity: sensor.17track_in_transit
                secondary_info: last-changed
        view_layout:
          grid-area: rightfoot
      - type: vertical-stack
        cards:
          - type: custom:advanced-camera-card
            camera_entity: camera.10_10_10_82
            live_provider: go2rtc
            go2rts:
              modes:
                - webrtc
            cameras:
              - camera_entity: camera.garage
                live_provider: ha
          - type: custom:uptime-card
            entity: binary_sensor.internet_reachable
            hours_to_show: 24
            title_adaptive_color: true
            status_adaptive_color: true
            icon: mdi:web
            update_interval: 30
            severity: 10
            icon_adaptive_color: true
            tooltip_adaptive_color: true
            alias:
              ok: Connected
              ko: Disconnected
        view_layout:
          grid-area: headleft
      - type: vertical-stack
        cards:
          - type: custom:advanced-camera-card
            camera_entity: camera.frontcam
            live_provider: gortc
            go2rts:
              modes:
                - webrtc
            cameras:
              - camera_entity: camera.frontcam
                live_provider: ha
                go2rtc:
                  modes:
                    - webrtc
            image:
              refresh_seconds: 5
          - type: custom:browser-player
        view_layout:
          grid-area: headright

Over the last few hours the right hand image reappeared. Nothing was done to the dashboard to cause it to reappear, did it on its own. Very confusing.