@zipify/wysiwyg 1.0.0-dev.54 → 1.0.0-dev.55

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/wysiwyg.mjs CHANGED
@@ -17429,7 +17429,7 @@ const $B = je.create({
17429
17429
  if (!e.startsWith("#"))
17430
17430
  return ht.URL;
17431
17431
  const t = e.replace("#", "");
17432
- return this.options.pageBlocks.value.find((i) => i.id === parseInt(t)) ? ht.BLOCK : ht.URL;
17432
+ return (this.options.pageBlocks.value || this.options.pageBlocks).find((o) => o.id === parseInt(t)) ? ht.BLOCK : ht.URL;
17433
17433
  }
17434
17434
  }
17435
17435
  };