diff --git a/ui/lib/src/nvui/chess.ts b/ui/lib/src/nvui/chess.ts index 1adb2f976a704..f4e5cbb384fed 100644 --- a/ui/lib/src/nvui/chess.ts +++ b/ui/lib/src/nvui/chess.ts @@ -483,7 +483,7 @@ export function renderMainline(nodes: Tree.Node[], currentPath: Tree.Path, style if (!node.san || !node.uci) return; path += node.id; const content: VNodeChildren = [ - node.ply & 1 ? plyToTurn(node.ply) + ' ' : null, + node.ply & 1 ? plyToTurn(node.ply) + '. ' : null, renderSan(node.san, node.uci, style), ]; res.push(h('move', { attrs: { p: path }, class: { active: path === currentPath } }, content));