Skip to content

Commit

Permalink
move jobssummary menu to left
Browse files Browse the repository at this point in the history
  • Loading branch information
Erwin Dondorp committed May 8, 2024
1 parent 9b64003 commit 3017382
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion saltgui/static/scripts/panels/JobsSummary.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ export class JobsSummaryPanel extends JobsPanel {
const tr = Utils.createTr();
tr.id = Utils.getIdFromJobId(job.id);

// menu on left side to prevent it from going past end of window
const menu = new DropDownMenu(tr, true);

const td = Utils.createTd();

let targetText = TargetType.makeTargetText(job);
Expand Down Expand Up @@ -70,7 +73,7 @@ export class JobsSummaryPanel extends JobsPanel {

tr.appendChild(td);

const menu = new DropDownMenu(tr, true);
// complete the menu
this._addMenuItemShowDetails(menu, job);
this._addMenuItemUpdateStatus(menu, statusSpan);

Expand Down

0 comments on commit 3017382

Please sign in to comment.