Update burgs-overview.js

spacing
This commit is contained in:
Ángel Montero Lamas 2021-12-31 20:55:29 +01:00
parent 3224f28b88
commit 6a02678d50

View file

@ -568,12 +568,15 @@ function overviewBurgs() {
function lockAllBurgs() {
pack.burgs.forEach(burg => {
burg.lock = true;});
burg.lock = true;
});
burgsOverviewAddLines();
}
function unlockAllBurgs() {
pack.burgs.forEach(burg => {
burg.lock = false;});
burg.lock = false;
});
burgsOverviewAddLines();
}