ASU / asu-unity-stack

ASU Unity Design System
https://unity.web.asu.edu/
Other
11 stars 8 forks source link

chore(unity-bootstrap-theme): fix story controls #1124

Closed scott-williams-az closed 1 year ago

scott-williams-az commented 1 year ago

Description

Broken story controls

size: {
      name: "Size",
      options: ["small",""],
      defaultValue: "",
      control: {
        type: "radio",
        labels: {
          "small": "Small",
          "": "Large",
        },
      },
    },

change "" to null


size: {
      name: "Size",
      options: ["small", null],
      defaultValue: null,
      control: {
        type: "radio",
        labels: {
          "small": "Small",
          null: "Large",
        },
      },
    },```