doway-coms 2.2.3 → 2.2.4
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 +1 -1
- package/packages/utils/filters.js +2 -2
- package/packages/utils/gridFormat.js +3 -0
- package/dist/css/chunk-vendors.7f83d8f9.css +0 -8
- package/dist/css/index.86478f73.css +0 -3
- package/dist/favicon.ico +0 -0
- package/dist/js/chunk-vendors.307eaa8f.js +0 -347
- package/dist/js/index.48e7f7ac.js +0 -2
package/package.json
CHANGED
|
@@ -460,8 +460,8 @@ export function gridDefaultValueDisplay(rowInfo,colInfo){
|
|
|
460
460
|
displayValue = displayValue.join(',')
|
|
461
461
|
break
|
|
462
462
|
case controlType.number:
|
|
463
|
-
if(colInfo.params.
|
|
464
|
-
displayValue=XEUtils.
|
|
463
|
+
if(colInfo.params.doRound){
|
|
464
|
+
displayValue=XEUtils.round(displayValue,colInfo.params.precision)
|
|
465
465
|
}
|
|
466
466
|
break
|
|
467
467
|
|