From 9a05080392eef61cfdf8865d5796eef5acfef3bc Mon Sep 17 00:00:00 2001 From: Erwin Dondorp Date: Fri, 25 Oct 2024 20:46:20 +0200 Subject: [PATCH] x --- saltgui/static/scripts/panels/Orchestrations.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/saltgui/static/scripts/panels/Orchestrations.js b/saltgui/static/scripts/panels/Orchestrations.js index 1686b6327..381ed6af3 100644 --- a/saltgui/static/scripts/panels/Orchestrations.js +++ b/saltgui/static/scripts/panels/Orchestrations.js @@ -195,8 +195,9 @@ export class OrchestrationsPanel extends Panel { // nothing more to show tr1.appendChild(Utils.createTd("details value-none", "(none)")); } else { - const formattedStep = Output.formatObject(step); - tr1.appendChild(Utils.createTd("grain-value", formattedStep)); + const td = Utils.createTd(); + Output.setHighlightObject(td, step); + tr1.appendChild(td); } this.table.tBodies[0].appendChild(tr1);