thm-p3-configurator 0.0.307 → 0.0.308
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.
|
@@ -291,8 +291,8 @@ const getExtraPriceCells = exports.getExtraPriceCells = function getExtraPriceCe
|
|
|
291
291
|
// No discount for extra price
|
|
292
292
|
priceCell(salesExcl)];
|
|
293
293
|
default:
|
|
294
|
-
// Default mode: Just show price incl VAT
|
|
295
|
-
return [...baseCells, priceCell(salesIncl)];
|
|
294
|
+
// Default mode: Just show price incl VAT (needs 2 empty cells before price to align)
|
|
295
|
+
return [...baseCells, {}, {}, priceCell(salesIncl)];
|
|
296
296
|
}
|
|
297
297
|
};
|
|
298
298
|
|