Commit e7bcd8c3 by Daniel Lee

variable: fix binding bug after ts conversion

parent 7d165068
...@@ -142,7 +142,7 @@ export class ValueSelectDropdownCtrl { ...@@ -142,7 +142,7 @@ export class ValueSelectDropdownCtrl {
commitChange = commitChange || false; commitChange = commitChange || false;
excludeOthers = excludeOthers || false; excludeOthers = excludeOthers || false;
let setAllExceptCurrentTo = function(newValue) { let setAllExceptCurrentTo = newValue => {
_.each(this.options, other => { _.each(this.options, other => {
if (option !== other) { if (option !== other) {
other.selected = newValue; other.selected = newValue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment