“mobile” option on table layout doesn’t seem to apply

hej all!

working on a blueprint, I implemented a section with layout: table and defined two columns as follows:

sections:
   brands:
      type: pages
      template: brand
      layout: table
      columns:
         origin:
            label:
               en: Origin
               de: Herkunft
            width: 1/4
            mobile: false
         connections:
            label: Connections
            value: "{{ page('page://products').children.listed.filterBy('brand', page).count }} product(s)"
            width: 1/6

now, judging from the documentation on the mobile option, I would expect the columns to be hidden on mobile but they all remain, squeezing their content into unusable size. so I tried adding mobile: false as a test (and opposed to the suggested mobile: true) but that doesn’t change anything either.

wondering if this is a bug in kirby 4 beta or if the mistake lies on my end.

any ideas? thanks in advance

That’s probably a bug, the default should be hidden on mobile, and then you can set mobile: true to show on mobile. Works as expected in Kirby 3.9.8, but not Kirby 4 Beta rc1, it seems.