Panel dialogs freeze if a multiselect is used

Hey Kirby Community,

I’m facing a weird issue on my pages. Anytime I would like to use a multiselect with query options to pages, the ability to change the site title breaks.

After implementing the multiselect field the page create dialog breaks and the panel runs into a timeout.

Any Idea whats the issue?

My Page setup:

title: Timetable Seite

options:
  changeTitle: true

status:
  draft:
    label: Entwurf
    text: Die Seite ist als Entwurf gespeichert und nicht veröffentlicht
  unlisted:
    label: Veröffentlicht
    text: Die Seite ist veröffentlicht und wird nicht in Menüs angezeigt
  listed:
    label: Veröffentlicht & Menülink
    text: Die Seite ist veröffentlicht und wird in den Menüs angezeigt

sections:
  settings:
    type: fields
    fields:
      inFooterMenu:
        type: toggle
        label: im Footermenü anzeigen?
      timetable:
        type: multiselect
        label: Time Table Block
        options: query
        query: site.index.filterBy('intendedTemplate', 'block-timeschedule')

  pages:
    type: pages
    create: block-timeschedule
    template: block-timeschedule
    status: all

UPDATE:
It’s the multiselect that breaks the panel. Everytime a multiselect is used it breaks the dialogs and the panel freezes.

Which Kirby version are you using? There was an issue in 3.3.0 that should be fixed in 3.3.1

Seems that the update fixed the issue, thank you very much for your fast reply texnixe.