@farris/ui-vue 1.7.4 → 1.7.5

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.
@@ -3701,7 +3701,7 @@ function Kn() {
3701
3701
  if (!l.data || !l.data.length)
3702
3702
  return "";
3703
3703
  const s = Object.prototype.hasOwnProperty.call(l, "valueField") && l.valueField || "value", p = Object.prototype.hasOwnProperty.call(l, "textField") && l.textField || "name";
3704
- if (t != null && t.includes(",")) {
3704
+ if (typeof t == "string" && (t != null && t.includes(","))) {
3705
3705
  const o = t.split(",");
3706
3706
  if (!l.data.filter((u) => o.includes(u[s])).length)
3707
3707
  return "";