getkirby / kirby

Kirby's core application folder
https://getkirby.com
Other
1.27k stars 167 forks source link

Title not showing up in Structure field page preview in block drawer. #4788

Closed teichsta closed 1 year ago

teichsta commented 1 year ago

Description

I create a structure field which contains a pages field. While all page title are shown when selecting a page the page title is not shown in the page preview bubble.

The blueprint:

  entries:
    label: 'Kategorien'
    type: structure
    max: 4
    fields:
      headline:
        label: Überschrift
        type: writer
      article:
        label: Beitrag
        type: pages
        image: page.previewImage
        max: 1
        required: true
        options: query
        query: site.children.template('blog').first.articles

Screenshots

image

afbora commented 1 year ago

@teichsta Which Kirby version do you have?

afbora commented 1 year ago

pages field doesn't have options prop. Should be fixed when you remove options: query from article field.

teichsta commented 1 year ago

yep you are right, so sorry for bothering! That fixed it …