Radio option label

I just realized that radio button options can not have “Yes”, “No”, “True”, or “False” as option labels.

This radio field:

showimages:
    label: Show image
    type:  radio
    options:
      yes: Yes
      no:  No
      notsure: Not sure

…will look like this:

Instead of:

Is this intentional? Can you reproduce this? I’m on Kirby 2.3.2.
Thank you :heart:

You can wrap yes/no in quotes:

showimages:
    label: Show image
    type:  radio
    options:
      yes: "Yes"
      no:  "No"
      notsure: Not sure
1 Like

Ah, thanks a lot @texnixe! Didn’t think of that :sweat_smile:

1 Like