소스 검색

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)
         }
     });