another attempt to unclog pipeline; this time a slight sleep timeout used to accomodate headless browser resize flush
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
This commit is contained in:
@@ -61,6 +61,18 @@ var RoleSelect = (function () {
|
||||
.split(",").filter(function (r) { return r.trim() !== roleCode; }).join(",");
|
||||
}
|
||||
openFan();
|
||||
} else {
|
||||
// Place role card in tray grid and open the tray
|
||||
var grid = document.getElementById("id_tray_grid");
|
||||
if (grid) {
|
||||
var trayCard = document.createElement("div");
|
||||
trayCard.className = "tray-cell tray-role-card";
|
||||
trayCard.dataset.role = roleCode;
|
||||
grid.insertBefore(trayCard, grid.firstChild);
|
||||
}
|
||||
if (typeof Tray !== "undefined") {
|
||||
Tray.open();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user