Browse Source

Merge pull request #121337 in DEC/fineui from master to feature/x

* commit '036c94cc9dda9ef5eaba6c10367110dd2441b200':
  fix: newValue为0时不生效的问题
es6
superman 2 years ago
parent
commit
e6989a284d
  1. 2
      src/core/4.widget.js

2
src/core/4.widget.js

@ -225,7 +225,7 @@
if (BI.isFunction(o.css)) {
var css = this.__watch(o.css, function (context, newValue) {
for (var k in css) {
if (!newValue[k]) {
if (BI.isNull(newValue[k])) {
newValue[k] = "";
}
}

Loading…
Cancel
Save