Skip to content

Commit

Permalink
Merge pull request #9690 from hexylena/patch-errors
Browse files Browse the repository at this point in the history
Add CSS class to messages in error report pages to make errors more visible
  • Loading branch information
dannon committed Apr 30, 2020
2 parents 37b84b7 + fdf306d commit 94390c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/galaxy/scripts/mvc/dataset/dataset-error.js
Expand Up @@ -127,7 +127,7 @@ var View = Backbone.View.extend({
if (job_messages) {
message += "<p>Execution resulted in the following messages:</p>";
for (const job_message of job_messages) {
message += `<p><pre>${_.escape(job_message["desc"])}</pre></p>`;
message += `<p><pre class="rounded code">${_.escape(job_message["desc"])}</pre></p>`;
}
}
if (tool_stderr) {
Expand Down

0 comments on commit 94390c2

Please sign in to comment.