Skip to content

Commit

Permalink
BAP-8700: Implement enums in the same way as dropdown fields in repor…
Browse files Browse the repository at this point in the history
…ts/segment
  • Loading branch information
mccar committed Feb 2, 2016
1 parent 8d51cc6 commit fca38c4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ define(function(require) {
data: {
'keys': this.value.value
},
success: function (reposne) {
success: function(reposne) {
self.value.value = reposne.results;
self._writeDOMValue(self.value);
self.applySelect2();
self.renderDeferred.resolve();
},
error: function (jqXHR) {
error: function(jqXHR) {
messenger.showErrorMessage(__('Sorry, unexpected error was occurred'), jqXHR.responseJSON);
}
});
Expand Down

0 comments on commit fca38c4

Please sign in to comment.