Skip to content

Commit

Permalink
Fix updating dropdown_enum interface (#1948)
Browse files Browse the repository at this point in the history
  • Loading branch information
BennerGe authored and rijkvanzanten committed Nov 14, 2017
1 parent 04597bc commit 341892c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/core/interfaces/dropdown_enum/interface.js
Expand Up @@ -12,7 +12,8 @@ define([
'change select': 'updateValue'
},
updateValue: function (event) {
this.model.set(this.name, event.currentTarget.value);
this.value = event.currentTarget.value
this.model.set(this.name, this.value);
},
unsavedChange: function () {
// NOTE: Only set the new value (mark changed) if the value has changed
Expand Down

0 comments on commit 341892c

Please sign in to comment.