@isoftdata/utility-dashboard-backend 2.0.1 → 2.0.2
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/chart-helper.js +2 -2
- package/package.json +1 -1
package/chart-helper.js
CHANGED
|
@@ -243,13 +243,13 @@ module.exports = {
|
|
|
243
243
|
// right align currency values
|
|
244
244
|
if (formatting?.[field]?.type === 'NumberFormat' && formatting?.[field].format.prefix === '$') {
|
|
245
245
|
return {
|
|
246
|
-
property: `${field}
|
|
246
|
+
property: `${field}[value]`,
|
|
247
247
|
name: field,
|
|
248
248
|
class: 'text-right border-top-0',
|
|
249
249
|
}
|
|
250
250
|
}
|
|
251
251
|
return {
|
|
252
|
-
property: `${field}
|
|
252
|
+
property: `${field}[value]`,
|
|
253
253
|
name: field,
|
|
254
254
|
class: 'border-top-0',
|
|
255
255
|
}
|
package/package.json
CHANGED