diff options
Diffstat (limited to 'js/components')
-rw-r--r-- | js/components/combobox.reel/combobox.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/js/components/combobox.reel/combobox.js b/js/components/combobox.reel/combobox.js index 8906a649..ebbfbffa 100644 --- a/js/components/combobox.reel/combobox.js +++ b/js/components/combobox.reel/combobox.js | |||
@@ -15,7 +15,7 @@ exports.Combobox = Montage.create(Component, { | |||
15 | }, | 15 | }, |
16 | 16 | ||
17 | _wasSetByCode: { | 17 | _wasSetByCode: { |
18 | enumerable: false, | 18 | enumerable: true, |
19 | value: true | 19 | value: true |
20 | }, | 20 | }, |
21 | 21 | ||
@@ -79,7 +79,7 @@ exports.Combobox = Montage.create(Component, { | |||
79 | e.value = this._value; | 79 | e.value = this._value; |
80 | this.dispatchEvent(e); | 80 | this.dispatchEvent(e); |
81 | 81 | ||
82 | this._wasSetByCode = false; | 82 | this._wasSetByCode = true; |
83 | } | 83 | } |
84 | } | 84 | } |
85 | }, | 85 | }, |