@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/esm/index.js
CHANGED
@@ -542,7 +542,7 @@ var CompanyManagementComponent = function (props) {
|
|
542
542
|
sorter: true,
|
543
543
|
align: "left",
|
544
544
|
render: function (item) {
|
545
|
-
return item ? item : "-";
|
545
|
+
return item ? addCommSep(item) : "-";
|
546
546
|
},
|
547
547
|
},
|
548
548
|
{
|
@@ -2455,7 +2455,7 @@ var ProgrammeManagementComponent = function (props) {
|
|
2455
2455
|
key: ProgrammeManagementColumns.emissionReductionExpected,
|
2456
2456
|
align: "right",
|
2457
2457
|
render: function (item) {
|
2458
|
-
return item ? item : "-";
|
2458
|
+
return item ? addCommSep(item) : "-";
|
2459
2459
|
},
|
2460
2460
|
},
|
2461
2461
|
{
|
@@ -2464,7 +2464,7 @@ var ProgrammeManagementComponent = function (props) {
|
|
2464
2464
|
key: ProgrammeManagementColumns.emissionReductionAchieved,
|
2465
2465
|
align: "right",
|
2466
2466
|
render: function (item) {
|
2467
|
-
return item ? item : "-";
|
2467
|
+
return item ? addCommSep(item) : "-";
|
2468
2468
|
},
|
2469
2469
|
},
|
2470
2470
|
{
|