tsv2-library 1.0.61-alpha.42 → 1.0.61-alpha.43

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.
@@ -55407,6 +55407,9 @@ const _sfc_main$Q = /* @__PURE__ */ defineComponent({
55407
55407
  }
55408
55408
  );
55409
55409
  const imagePreview = computedAsync(async () => {
55410
+ if (!thumbnailString.value || errorLoadImage.value) {
55411
+ return Placeholder;
55412
+ }
55410
55413
  const preview = previewString.value || imageThumbnail.value;
55411
55414
  if (typeof preview === "string") {
55412
55415
  return preview.includes("http") || preview.includes("data:image/svg+xml") ? preview : await getImageURL(preview);