Skip to content

Commit

Permalink
tooltips must be on spans (to prevent wrong highlighting)
Browse files Browse the repository at this point in the history
  • Loading branch information
Erwin Dondorp committed Apr 10, 2022
1 parent d121bfb commit 977d156
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion saltgui/static/scripts/panels/JobsSummary.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ export class JobsSummaryPanel extends JobsPanel {
td.appendChild(statusSpan);

const startTimeDiv = Utils.createDiv("time");
Output.dateTimeStr(job.StartTime, startTimeDiv);
const startTimeSpan = Utils.createSpan();
Output.dateTimeStr(job.StartTime, startTimeSpan);
startTimeDiv.appendChild(startTimeSpan);
td.appendChild(startTimeDiv);

tr.appendChild(td);
Expand Down

0 comments on commit 977d156

Please sign in to comment.