@tekkare/auriga 0.2.161 → 0.2.162
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.
package/dist/module.json
CHANGED
|
@@ -419,9 +419,12 @@ export default defineComponent({
|
|
|
419
419
|
}).format(value);
|
|
420
420
|
}
|
|
421
421
|
if (!compactMode) {
|
|
422
|
-
returnValue
|
|
422
|
+
if (returnValue === null) {
|
|
423
|
+
returnValue = "-";
|
|
424
|
+
} else
|
|
425
|
+
returnValue = new Intl.NumberFormat("fr-FR").format(value);
|
|
423
426
|
}
|
|
424
|
-
if (hasPercentages) {
|
|
427
|
+
if (hasPercentages && value !== null) {
|
|
425
428
|
let seriesTotal = seriesData[opt.seriesIndex].data.reduce(
|
|
426
429
|
(a, b) => a + b,
|
|
427
430
|
0
|