浏览代码

grid.column.filter.type = 'string'

luoyifan 3 年之前
父节点
当前提交
f93db2ab73
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/controls/gridcolumn.js

+ 1 - 1
src/controls/gridcolumn.js

@@ -7,7 +7,7 @@ export default function () {
     const ct = Ext.grid.column.Column.prototype.constructor
     Ext.grid.column.Column.override({
         constructor: function (config) {
-            const newConfig = _.defaultsDeep({}, config, column)
+            const newConfig = _.defaults({}, config, column)
             ct.call(this, newConfig)
         }
     });