@teselagen/ui 0.3.5 → 0.3.7

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.
@@ -306,7 +306,7 @@ function getSubFilter(
306
306
  stringFilterValue.toLowerCase && stringFilterValue.toLowerCase();
307
307
  const arrayFilterValue = Array.isArray(filterValue)
308
308
  ? filterValue
309
- : stringFilterValue.split(".");
309
+ : stringFilterValue.split(";");
310
310
  if (ccSelectedFilter === "startsWith") {
311
311
  return qb
312
312
  ? qb.startsWith(stringFilterValue) //filter using qb (aka we're backend connected)