How can i use conditional fields with multiselect field

fields:
    options:
        label: Options
        type: multiselect
        options:
            - Sizes
    sizes:
        type: checkboxes
        when:
            options: Sizes
        options:
          - S
          - M
          - L
          - XL
          - XXL

I want to use conditional fields with multiselect like above sample. But it is not working.
It is working with select but not with multiselect field.

Thanks

Not quite sure how results from a multiselect are stored, as a comma separated list probably. So when it is read, you get an array to string comparison which won’t work.

Ahmet created an issue in the ideas tracker: https://github.com/getkirby/ideas/issues/287 (vote to support the idea)

This is me :wink: