Pictue is not displayed lovelace

Since one of the latest updates pictue is not displayed. Should I put the link somewhere else ?

views:
  - title: Thuis
    panel: true
   
    cards:
       
      - type: custom:layout-card
        cards:
        layout: vertical
        cards:
          - type: glance
            entities:
            #cards:
              - type: picture-entity
                name: myname
                entity: device_tracker.samsung_galaxy_s7
                icon: /local/images/myname.jpg
              - entity: device_tracker.samsung_galaxy_s7_2
                icon: anothername.png

because your configuration isn’t correct. Glance card cannot hold cards in the entity section and type is not a valid option for glance entities.

Icon will only override the icon with an icon file. You can’t place an image there.

views:
  - title: Thuis
    panel: true
    cards:
      - type: custom:layout-card
        cards:
        layout: vertical
        cards:
          - type: glance
            entities:
              - name: myname
                entity: device_tracker.samsung_galaxy_s7
              - entity: device_tracker.samsung_galaxy_s7_2

If you want an image, customize your device_tracker in the customize section or in the device_tracker section itself.

It worked until version 0.88 (something like that)
But I will bring it to the customize section. Thank you.