commander: fix tables

This commit is contained in:
2024-08-12 18:55:25 +02:00
parent 25d4a96f10
commit 54659389e1

View File

@@ -169,7 +169,7 @@
boatCells[3].append(lockBtn); boatCells[3].append(lockBtn);
for (cell in boatCells) for (cell in boatCells)
{ {
boatRow.append(cell); boatRow.append(boatCells[cell]);
} }
boatjesEl.append(boatRow); boatjesEl.append(boatRow);
} }
@@ -236,8 +236,9 @@
clientCells[3].append(kickBtn); clientCells[3].append(kickBtn);
for (cell in clientCells) for (cell in clientCells)
{ {
clientRow.append(cell); clientRow.append(clientCells[cell]);
} }
clientsEl.append(clientRow);
} }
else else
{ {