Page blueprint

Hi all. I have a problem with page blueprint page coding for admin panel.
I have the folowing code in product.yaml

                    header.category:
                      type: select
                      label: Category
                      help: 'Select the product category'
                      default: one
                      options:
                        one: Cart
                        two: Std Container
                        three: Oven Rack

When I choose in admin panel one of this option grav saves in product.md like “category: two”. But how to fix it so that it will be like “category: Cart”. Thanks before

As far as I know, it’s a key value array, so you can replace it with your own label, eg:

  type: select
                      label: Category
                      help: 'Select the product category'
                      default: cart
                      options:
                        cart: Cart
                        container: Std Container
                        oven: Oven Rack