1
0

move game points into name cell

This commit is contained in:
Adrian Wannenmacher 2026-02-18 19:18:39 +01:00
parent 3a0db3c620
commit 7df55afd1a
Signed by: tfld
GPG Key ID: 19D986ECB1E492D5

View File

@ -15,11 +15,8 @@ export default class SessionView {
m("table", [ m("table", [
m("thead", [ m("thead", [
m("tr", [ m("tr", [
m("th", "se"), m("th", "mia"), m("th", ["se", " ", "•".repeat(res.theirPoints)]),
]), m("th", ["mia", " ", "•".repeat(res.ourPoints)]),
m("tr", [
m("th", "•".repeat(res.theirPoints)),
m("th", "•".repeat(res.ourPoints)),
]), ]),
]), ]),
model.games.map((g) => m(GameView, { model: g })), model.games.map((g) => m(GameView, { model: g })),