Browse Source

Pull request #3063: 无JIRA任务 chore: 优化代码

Merge in VISUAL/fineui from ~GUY/fineui:master to master

* commit 'df12a5635938dc058ee197659cbf6d6e85b1d60f':
  chore: 优化代码
es6
guy-王川 2 years ago
parent
commit
2a1bae964b
  1. 2
      src/case/trigger/trigger.text.select.js

2
src/case/trigger/trigger.text.select.js

@ -52,7 +52,7 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
_digest: function (val, items) {
var o = this.options;
val = BI.isArray(val) ? val : [val];
val = BI.isArray(val) ? val.slice() : [val];
// 提升valueFormatter的优先级
if (o.valueFormatter !== BI.emptyFn && BI.isFunction(o.valueFormatter)) {

Loading…
Cancel
Save