Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
Erwin Dondorp committed Oct 25, 2024
1 parent aa1a827 commit 9a05080
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions saltgui/static/scripts/panels/Orchestrations.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 9a05080

Please sign in to comment.