@redneckz/wildless-cms-uni-blocks 0.14.801 → 0.14.802

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.
@@ -5961,7 +5961,7 @@
5961
5961
  };
5962
5962
  const getYearFromMonth = (month) => Math.floor(month / 12);
5963
5963
  const saveDocument = async ({ document, taskId, category, files, }) => {
5964
- await fetch(`data:'application/pdf';base64,${document}`)
5964
+ await fetch(`data:application/pdf;base64,${document}`)
5965
5965
  .then((res) => res.blob())
5966
5966
  .then((value) => uploadFile(value, taskId, category))
5967
5967
  .then((file) => files.push(file));
@@ -11461,7 +11461,7 @@
11461
11461
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
11462
11462
  });
11463
11463
 
11464
- const packageVersion = "0.14.800";
11464
+ const packageVersion = "0.14.801";
11465
11465
 
11466
11466
  exports.Blocks = Blocks;
11467
11467
  exports.ContentPage = ContentPage;