nntc-ui 0.0.36 → 0.0.37
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/index.js +2 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1806,7 +1806,8 @@ function MultiSelect(props) {
|
|
|
1806
1806
|
value: title2,
|
|
1807
1807
|
onClick: inputClickHandler,
|
|
1808
1808
|
disabled: disabled2,
|
|
1809
|
-
title: activeItems.map((i) => i.name).join(", ")
|
|
1809
|
+
title: activeItems.map((i) => i.name).join(", "),
|
|
1810
|
+
autoComplete: "off"
|
|
1810
1811
|
}
|
|
1811
1812
|
),
|
|
1812
1813
|
!!icon6 && /* @__PURE__ */ jsx20("span", { onClick: inputClickHandler, className: classnames11(icon5, classes?.icon), children: icon6 }),
|