@bluemarble/bm-components 1.12.1 → 1.12.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/index.mjs CHANGED
@@ -4902,6 +4902,8 @@ function useGrid({
4902
4902
  };
4903
4903
  }
4904
4904
  function searchKeysForValue(row, compare) {
4905
+ if (typeof row === "undefined")
4906
+ return false;
4905
4907
  const rowKeys = Object.keys(row);
4906
4908
  let match = false;
4907
4909
  const isNumberOrString = (value) => ["number", "string"].includes(typeof value);