Skip to content

Commit

Permalink
Merge pull request #6316 from mvdbeek/success_message_fix
Browse files Browse the repository at this point in the history
Fix undefined success_message
  • Loading branch information
dannon committed Jun 12, 2018
2 parents 254a6bc + 6ad4192 commit c08f7c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/form/form-wrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ var View = Backbone.View.extend({
form.data.matchModel(response, (input, input_id) => {
form.field_list[input_id].value(input.value);
});
self._showMessage(form, success_message);
self._showMessage(form, response.message);
}
})
.fail(response => {
Expand Down

0 comments on commit c08f7c9

Please sign in to comment.