doway-coms 2.8.8 → 2.8.9
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
|
@@ -3197,6 +3197,14 @@ export default {
|
|
|
3197
3197
|
currentVisible = data.find((x) => cellValue.indexOf(x) > -1)
|
|
3198
3198
|
? true
|
|
3199
3199
|
: false
|
|
3200
|
+
if(
|
|
3201
|
+
column.params.controlType === controlType.select ||
|
|
3202
|
+
column.params.controlType === controlType.multiSelect
|
|
3203
|
+
){
|
|
3204
|
+
currentVisible = data.find((x) => cellValue===x)
|
|
3205
|
+
? true
|
|
3206
|
+
: false
|
|
3207
|
+
}
|
|
3200
3208
|
}
|
|
3201
3209
|
return currentVisible
|
|
3202
3210
|
},
|