t20-common-lib 0.15.30 → 0.15.31

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "t20-common-lib",
3
- "version": "0.15.30",
3
+ "version": "0.15.31",
4
4
  "description": "T20",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
@@ -196,7 +196,7 @@ export default {
196
196
  const dNum = props?.dNum ? props.dNum : 6
197
197
  const n = Number(val)
198
198
  if (Number.isNaN(n)) return val
199
- return String(n).toFixed(dNum)
199
+ return n.toFixed(dNum)
200
200
  },
201
201
  labelFromOptions(options, raw, multiple) {
202
202
  const opts = options || []