Time fields not displaying the saved values

I’m using the following section in my blueprint

check_in_policy:
        type: fields
        fields:
          check_in_title:
            label:
              en: Check-In Policy
              el: Πολιτική Check-In
            type: headline
          check_in_timing:
            type: group
            fields:
              time-in:
                label:
                  en: Check-In Time
                  el: Ώρα Check-In
                width: 1/2
                translate: false
                default: now
                display: HH:mm
                type: time
              time-out:
                label:
                  en: Check-Out Time
                  el: Ώρα Check-Out
                width: 1/2
                translate: false
                type: time

When i fill in check in and checkout time and then save the changes the fields appear empty, shouldn’t they display the selected value? Any ideas what might be going wrong?

You can not use dashes in field names. See Fields | Kirby CMS.

1 Like

Took me an afternoon…It was that simple!
Thank you!