diff --git a/src/base/single/single.js b/src/base/single/single.js index 2ad590597..5e1cc53f5 100644 --- a/src/base/single/single.js +++ b/src/base/single/single.js @@ -199,7 +199,10 @@ BI.Single = BI.inherit(BI.Widget, { return this.options.value; }, - update: function (props) { + update: function (props, shouldUpdate) { + if (BI.isObject(shouldUpdate)) { + props = shouldUpdate; + } if ("value" in props) { this.setValue(props.value); }