variable: fix binding bug after ts conversion

This commit is contained in:
Daniel Lee
2018-04-16 19:59:47 +02:00
parent 7d165068df
commit e7bcd8c3c3

View File

@@ -142,7 +142,7 @@ export class ValueSelectDropdownCtrl {
commitChange = commitChange || false;
excludeOthers = excludeOthers || false;
let setAllExceptCurrentTo = function(newValue) {
let setAllExceptCurrentTo = newValue => {
_.each(this.options, other => {
if (option !== other) {
other.selected = newValue;