Skip to content
Snippets Groups Projects
Commit a1aac5bb authored by Tony Salomone's avatar Tony Salomone
Browse files

Show the template name instead of the ID if available in the training jobs history

parent 7685d114
No related branches found
No related tags found
No related merge requests found
...@@ -65,7 +65,7 @@ function jobChipColor(status: string): string { ...@@ -65,7 +65,7 @@ function jobChipColor(status: string): string {
function formatJobConfig(c): ReactElement { function formatJobConfig(c): ReactElement {
const r = ( const r = (
<> <>
<b>Template ID:</b> {c?.job_data?.template_id} <b>Template:</b> {c?.job_data?.template_name || c?.job_data?.template_id}
<br /> <br />
<b>Model:</b> {c?.job_data?.model_name} <b>Model:</b> {c?.job_data?.model_name}
<br /> <br />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment