From 11229cd3f4a9d3dfce176d64df914b593449f47f Mon Sep 17 00:00:00 2001 From: hujambo-dunia Date: Wed, 10 Jan 2024 13:48:19 -0500 Subject: [PATCH] Added job error message detail using HTML formatting --- client/src/components/JobInformation/JobInformation.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/components/JobInformation/JobInformation.vue b/client/src/components/JobInformation/JobInformation.vue index c5cf3e08b619..9ee7707a121b 100644 --- a/client/src/components/JobInformation/JobInformation.vue +++ b/client/src/components/JobInformation/JobInformation.vue @@ -29,8 +29,8 @@ const runTime = computed(() => const jobIsTerminal = computed(() => job.value && !JOB_STATES_MODEL.NON_TERMINAL_STATES.includes(job.value.state)); const metadataDetail = ref({ - exit_code: - "Tools may use exit codes to indicate specific execution errors. Many programs use 0 to indicate success and non-zero exit codes to indicate errors. Galaxy allows each tool to specify exit codes that indicate errors. https://docs.galaxyproject.org/en/master/dev/schema.html#tool-stdio-exit-code", + exit_code: `Tools may use exit codes to indicate specific execution errors. Many programs use 0 to indicate success and non-zero exit codes to indicate errors. Galaxy allows each tool to specify exit codes that indicate errors. https://docs.galaxyproject.org/en/master/dev/schema.html#tool-stdio-exit-code`, + error_level: `NO_ERROR = 0
LOG = 1
QC = 1.1
WARNING = 2
FATAL = 3
FATAL_OOM = 4
MAX = 4`, }); function updateJob(fromProvider) { @@ -114,7 +114,7 @@ function filterMetadata(jobMessages) {
  • {{ name }}: