Slice Labels have completely disappeared

Hey @Pau

A JSON structure won't be very helpful as the JSON structured itself has been altered without nobody touching it (that's the problem I'm reporting)

This is the JSON structure current present for the slice with the label:

          "cta_section" : {
            "type" : "Slice",
            "fieldset" : "CTA Section",
            "description" : "Title, perks list & CTA - terminal & inlined",
            "icon" : "check",
            "display" : "grid",
            "non-repeat" : {
              "title" : {
                "type" : "StructuredText",
                "config" : {
                  "single" : "heading1,heading2,heading3,heading4,heading5,heading6",
                  "label" : "Title"
                }
              },
              "cta_link" : {
                "type" : "Link",
                "config" : {
                  "label" : "cta link",
                  "placeholder" : "If left blank, it defaults to \"#start-building\"",
                  "select" : null
                }
              },
              "cta_text" : {
                "type" : "Text",
                "config" : {
                  "label" : "CTA Text"
                }
              }
            },
            "repeat" : {
              "perk" : {
                "type" : "Text",
                "config" : {
                  "label" : "Perk"
                }
              }
            }
          },

However, there are no labels defined in the custom type (and I'm 10000% sure that there used to be but I don't have a way to prove it as they are now gone)

      "config" : {
        "labels" : null,

While in my Customers custom type, where I do have the same slice + labels (still there), I have

        "labels" : {
          "carousel" : [ ],
          "section_title" : [ ],
          "story_card_link" : [ ],
          "cta_section" : [ {
            "name" : "terminal",
            "display" : "terminal"
          }, {
            "name" : "inlined",
            "display" : "inlined"
          } ]
        },

This has been previously reported bug:


I can redo the slice and use select field instead of a label but that means that I need to go through all my 150+ documents and reassign the correct value.