@overmap-ai/core 1.0.58-form-improvements.1 → 1.0.58-form-improvements.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/overmap-core.js
CHANGED
|
@@ -13291,7 +13291,10 @@ const MultiStringInput = memo((props) => {
|
|
|
13291
13291
|
mb: "1",
|
|
13292
13292
|
asChild: true,
|
|
13293
13293
|
children: /* @__PURE__ */ jsxs(Badge, { color: "gray", size: "2", children: [
|
|
13294
|
-
/* @__PURE__ */ jsx("span", {
|
|
13294
|
+
/* @__PURE__ */ jsx("span", {
|
|
13295
|
+
// TODO: remove this, its just a saftey check for old compatibility of what was acceptable as a value for multi string
|
|
13296
|
+
children: typeof option === "object" && "label" in option ? option.label : option
|
|
13297
|
+
}),
|
|
13295
13298
|
/* @__PURE__ */ jsx(
|
|
13296
13299
|
IconButton,
|
|
13297
13300
|
{
|