Skip to content

Commit

Permalink
Merge PR #92: Fix error message display when CSV export fails [MNG-2273]
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenmacdonald committed Jul 9, 2021
2 parents 3f09dda + f3569c5 commit 5e849b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poll/public/js/poll.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ function PollUtil (runtime, element, pollType) {
else {
if (statusChanged) {
if (newStatus.last_export_result.error) {
self.errorMessage.text(error);
self.errorMessage.text("Error: " + newStatus.last_export_result.error);
self.errorMessage.show();
} else {
self.downloadResultsButton.attr('disabled', false);
Expand Down

0 comments on commit 5e849b5

Please sign in to comment.