Import/export of a field with the type:colorpicker not possible!?

I have the following blueprint:


fields:
    brand:
        label: Brand
        span: row
        spanClass: col-12
        type: entries
        displayMode: relation
        maxItems: 1
        source: Catalog\Brand

    manufacturer_name:
        label: Manufacturer color name
        span: row
        spanClass: col-12
        type: text

    color:
        label: Color
        span: row
        spanClass: col-12
        type: colorpicker
        showInput: true

when exporting or importing, the field is not displayed at all. Can anyone help me?

Adding a column solves the problem E.g.:

color:
    label: Color
    span: row
    spanClass: col-12
    type: colorpicker
    showInput: true
    column:
        label: Color
1 Like