doway-coms 2.11.73 → 2.11.74
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
|
@@ -452,7 +452,7 @@ export function gridDefaultValueDisplay(rowInfo,colInfo){
|
|
|
452
452
|
|
|
453
453
|
let colControlType = colInfo.params.controlType
|
|
454
454
|
let displayValue = rowInfo[colInfo.field]
|
|
455
|
-
if(displayValue===null){
|
|
455
|
+
if(displayValue===null || displayValue===undefined){
|
|
456
456
|
return ''
|
|
457
457
|
}
|
|
458
458
|
switch(colControlType){
|