Skip to content

Commit

Permalink
remove strict comparison on select UI selected value
Browse files Browse the repository at this point in the history
  • Loading branch information
wellingguzman committed Nov 1, 2016
1 parent 374e375 commit c4a8e2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/core/uis/select.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ define(['app', 'core/UIComponent', 'core/UIView', 'core/t'],function(app, UIComp

item.value = value;
item.key = key;
item.selected = (item.key === selectedValue);
item.selected = (item.key == selectedValue);

return item;
});
Expand Down

0 comments on commit c4a8e2d

Please sign in to comment.