run babel

This commit is contained in:
Cayo Puigdefabregas 2022-06-21 18:27:55 +02:00
parent 1168842cea
commit b47cc84859
1 changed files with 1 additions and 1 deletions

View File

@ -707,6 +707,6 @@ function appendMenu(lots, listHTML, templateLot, selectedDevices, actions, title
lotsList.push(lots.filter(lot => lot.state == "false").sort((a, b) => a.name.localeCompare(b.name)));
lotsList = lotsList.flat(); // flat array
listHTML.append("<li style=\"color: black; text-align: center\">" + title + "<hr /></li>");
listHTML.append(`<li style="color: black; text-align: center">${ title }<hr /></li>`);
lotsList.forEach(lot => templateLot(lot, selectedDevices, listHTML, actions));
}