We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa1a827 commit 9a05080Copy full SHA for 9a05080
saltgui/static/scripts/panels/Orchestrations.js
@@ -195,8 +195,9 @@ export class OrchestrationsPanel extends Panel {
195
// nothing more to show
196
tr1.appendChild(Utils.createTd("details value-none", "(none)"));
197
} else {
198
- const formattedStep = Output.formatObject(step);
199
- tr1.appendChild(Utils.createTd("grain-value", formattedStep));
+ const td = Utils.createTd();
+ Output.setHighlightObject(td, step);
200
+ tr1.appendChild(td);
201
}
202
203
this.table.tBodies[0].appendChild(tr1);
0 commit comments