@redneckz/wildless-cms-uni-blocks 0.14.271 → 0.14.273

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.
@@ -4560,9 +4560,7 @@
4560
4560
  if (docBlockDef?.docType === '') {
4561
4561
  return null;
4562
4562
  }
4563
- const href = docBlockDef?.docType === 'Attachment'
4564
- ? adjustHref(router)(docBlockDef?.attachment?.src)
4565
- : docBlockDef?.href;
4563
+ const href = adjustHref(router)(docBlockDef?.docType === 'Attachment' ? docBlockDef?.attachment?.src : docBlockDef?.href);
4566
4564
  const fileSize = docBlockDef?.docType === 'Attachment'
4567
4565
  ? formatBytes(docBlockDef?.attachment?.fileSize || 0)
4568
4566
  : docBlockDef?.fileSize;
@@ -6128,7 +6126,7 @@
6128
6126
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
6129
6127
  });
6130
6128
 
6131
- const packageVersion = "0.14.270";
6129
+ const packageVersion = "0.14.272";
6132
6130
 
6133
6131
  exports.Blocks = Blocks;
6134
6132
  exports.ContentPage = ContentPage;