@undp/carbon-library 1.0.50 → 1.0.52
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/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
@@ -562,7 +562,7 @@ var CompanyManagementComponent = function (props) {
|
|
562
562
|
sorter: true,
|
563
563
|
align: "left",
|
564
564
|
render: function (item) {
|
565
|
-
return item ? item : "-";
|
565
|
+
return item ? addCommSep(item) : "-";
|
566
566
|
},
|
567
567
|
},
|
568
568
|
{
|
@@ -2475,7 +2475,7 @@ var ProgrammeManagementComponent = function (props) {
|
|
2475
2475
|
key: exports.ProgrammeManagementColumns.emissionReductionExpected,
|
2476
2476
|
align: "right",
|
2477
2477
|
render: function (item) {
|
2478
|
-
return item ? item : "-";
|
2478
|
+
return item ? addCommSep(item) : "-";
|
2479
2479
|
},
|
2480
2480
|
},
|
2481
2481
|
{
|
@@ -2484,7 +2484,7 @@ var ProgrammeManagementComponent = function (props) {
|
|
2484
2484
|
key: exports.ProgrammeManagementColumns.emissionReductionAchieved,
|
2485
2485
|
align: "right",
|
2486
2486
|
render: function (item) {
|
2487
|
-
return item ? item : "-";
|
2487
|
+
return item ? addCommSep(item) : "-";
|
2488
2488
|
},
|
2489
2489
|
},
|
2490
2490
|
{
|