Problem displaying table field plugin information inside a block

Hi guys,

Iā€™m having issues with getting the table field plugin to display a label and Icon within my custom block layout as you can see from the attached image it just shows ā€œNo entries yetā€ even when there are entries for the table. Iā€™m not sure if there is a way for me to go into the pluginā€™s source code and add whatever I would need to change this maybe? Or if itā€™s just something Iā€™m not doing right? Iā€™d be happy with just a label and an icon really, code is as follows:

      content:
        type: fields
        fields:
          blocks:
            type: blocks
            fieldsets:
              product-cards: 
                label: Product Cards
                fields:
                  products:
                    type: structure
                    fields:
                      /// fields
              table: 
                label: Table Block
                fields:
                  table:
                    label: Table
                    type: table
                    maxColumns: 10
                    minColumns: 2

First obvious error is the dash, not allowed in yaml filesā€¦

Oh okay I didnā€™t know that, Iā€™ve used them in a quite a few projects without any issues.

ā€œNo entries yetā€ is located in kirby/i18n/translations
for the ā€œfield.strucutre.emptyā€ object.

Is there some way I can override this for the table plugin?

What table plugin are you referring to? Is that even compatible?

Using this one Table field | Kirby

Just to avoid any confusion the product-cards field doesnā€™t affect my ā€˜tableā€™ field at all. I only included that part of the code for context with the screenshot.

You would have to create a block preview for this block type.

okay cool, iā€™ll have a look thanks Sonja