FIX: combo-box should assign value on initialize

This fixes the bug where admins could post to uncategorized even when it was disabled.
This commit is contained in:
Kane York 2015-06-30 10:13:07 -07:00
parent 4152bff834
commit bdfe91914f
1 changed files with 1 additions and 0 deletions

View File

@ -74,6 +74,7 @@ export default Ember.Component.extend({
}
self.set('value', val);
});
$elem.trigger('change');
}.on('didInsertElement'),
_destroyDropdown: function() {