Skip to content

Commit 5097bf3

Browse files
committed
Fix small newly introduced bug.
1 parent 4945a45 commit 5097bf3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ui/Component.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ var Component = this.Component = Base.extend(Callback, /** @lends Component# */{
7575
that.setValue(
7676
DomElement.get(this, that._info.value || 'value'));
7777
if (fireChange) {
78-
that._palette.fire('change', that, that.name, value);
79-
that.fire('change', value);
78+
that._palette.fire('change', that, that.name, that._value);
79+
that.fire('change', that._value);
8080
}
8181
},
8282
click: function() {

0 commit comments

Comments
 (0)