From 2617eae5c70ffbb09e4c1672ea379f654ceaed7d Mon Sep 17 00:00:00 2001 From: hujambo-dunia Date: Wed, 10 Jan 2024 13:08:34 -0500 Subject: [PATCH] Added job error message detail --- .../JobInformation/JobInformation.vue | 21 ++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/client/src/components/JobInformation/JobInformation.vue b/client/src/components/JobInformation/JobInformation.vue index 0cbb1ab7d3bb..c5cf3e08b619 100644 --- a/client/src/components/JobInformation/JobInformation.vue +++ b/client/src/components/JobInformation/JobInformation.vue @@ -28,6 +28,11 @@ 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", +}); + function updateJob(fromProvider) { job.value = fromProvider; } @@ -107,7 +112,14 @@ function filterMetadata(jobMessages) { Job Message {{ m + 1 }}:
  • - {{ name }}: + {{ name }}: + {{ name }}: {{ value }}

  • @@ -133,3 +145,10 @@ function filterMetadata(jobMessages) { + +