Skip to content

Commit

Permalink
Fix data export submission confirmation message (#1322)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpalmer authored May 29, 2020
1 parent f565b8f commit 8478039
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions html/gui/js/modules/DataExport.js
Original file line number Diff line number Diff line change
Expand Up @@ -537,10 +537,6 @@ XDMoD.Module.DataExport.RequestsGrid = Ext.extend(Ext.grid.GridPanel, {
scope: this,
success: function () {
this.store.reload();
Ext.Msg.alert(
'Request Submitted',
XDMoD.Module.DataExport.requestSubmittedText
);
},
failure: function (response) {
Ext.Msg.alert(
Expand Down Expand Up @@ -598,6 +594,10 @@ XDMoD.Module.DataExport.RequestsGrid = Ext.extend(Ext.grid.GridPanel, {
scope: this,
success: function () {
this.store.reload();
Ext.Msg.alert(
'Request Submitted',
XDMoD.Module.DataExport.requestSubmittedText
);
},
failure: function (response) {
Ext.Msg.alert(
Expand Down

0 comments on commit 8478039

Please # to comment.