Explorar el Código

grid.column.filter.type = 'string'

luoyifan hace 3 años
padre
commit
f93db2ab73
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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)
         }
     });