Image preview breaks is layout: cards is chosen - Blueprint issue

Hi there!

I am more a designer than a programmer and I ve hit a wall when trying to design a panel page with blueprints. I’m working with Kirby 3.5+
The problem is that if I chose the option “layout: cards” for my gallery, the preview breaks and so does the image display from the select field. Any help is much appreciated.

title: Illustration
icon: 🎨

columns:
  intro:
    width: 2/3
    sections:
      intro:
        type: fields
        fields:
          text:
            label: Introtext
            type: text
            size: medium
        
  bwIlluGallery:
    width: 1/2
    sections:
      bwIlluGallery:
        type: fields
        fields:
          bwIlluGallery:
            type: files
            label: Black and White Frontend Gallery
            layout: cards
            image: 1/1
            max: 20
            options: query
            query: site.index.images.filterBy('media','black and white Illustration')
        

  cIllu:
    width: 1/2
    sections:
      cIllu:
        type: fields
        fields:
          cIllu:
            label: cIllu
            type: files
            max: 20
            options: query
            query: site.index.images.filterBy('media','colored Illustration')

It results in this:
left - with “layout: cards”-select not working
right - without-select is working


select-popup with “layout: cards”

select-popup with no layout

What does layout: cover refer to?

1 Like

thank you for the question. I somehow wrote “cover” instead of “cards”. I edited my text. This only conceded my explanation - not my problem, which prevails.

The problem is probably your setting image: 1/1 That setting doesn’t exist.

1 Like

Thank you very very much. I encountered this Problem in so many pages of my project. Thank you!