evui 3.4.81 → 3.4.82
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/dist/evui.common.js
CHANGED
|
@@ -11217,7 +11217,7 @@ $({ target: 'Number', stat: true }, {
|
|
|
11217
11217
|
/***/ "9224":
|
|
11218
11218
|
/***/ (function(module) {
|
|
11219
11219
|
|
|
11220
|
-
module.exports = JSON.parse("{\"a\":\"3.4.
|
|
11220
|
+
module.exports = JSON.parse("{\"a\":\"3.4.82\"}");
|
|
11221
11221
|
|
|
11222
11222
|
/***/ }),
|
|
11223
11223
|
|
|
@@ -36336,7 +36336,9 @@ var uses_filterEvent = function filterEvent(params) {
|
|
|
36336
36336
|
column.type = column.type || 'string';
|
|
36337
36337
|
|
|
36338
36338
|
if (columnValue !== null) {
|
|
36339
|
-
if (
|
|
36339
|
+
if (columnValue instanceof Array) {
|
|
36340
|
+
columnValue = JSON.stringify(columnValue);
|
|
36341
|
+
} else if (_typeof(columnValue) === 'object') {
|
|
36340
36342
|
columnValue = columnValue[column.field];
|
|
36341
36343
|
}
|
|
36342
36344
|
|