@redneckz/wildless-cms-uni-blocks 0.8.26 → 0.8.27

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.
@@ -19,8 +19,10 @@ function adjustBonusBenefitsBlock(block) {
19
19
  const bonusBenefits = block?.content?.bonusBenefits;
20
20
  if (bonusBenefits) {
21
21
  for (const benefit of bonusBenefits) {
22
- renameProp(benefit, 'description', 'title');
23
- renameProp(benefit, 'label', 'description');
22
+ if (benefit.label) {
23
+ renameProp(benefit, 'description', 'title');
24
+ renameProp(benefit, 'label', 'description');
25
+ }
24
26
  }
25
27
  }
26
28
  }
@@ -4547,7 +4547,7 @@
4547
4547
  return (jsx("div", { className: "flex items-end absolute bottom-0 right-0 h-full pointer-events-none", children: jsx(LikeControl, { className: "rounded-tl-lg sticky bottom-0 pointer-events-auto" }) }));
4548
4548
  }
4549
4549
 
4550
- const packageVersion = "0.8.26";
4550
+ const packageVersion = "0.8.27";
4551
4551
 
4552
4552
  exports.Blocks = Blocks;
4553
4553
  exports.ContentPage = ContentPage;