// ================================================================ // Command Log Component // ================================================================ window.renderLog = function(cmds) { const el = document.getElementById('log-content'); if (!cmds.length) { el.innerHTML = '
No commands sent yet.
'; return; } const rows = cmds.map(cmd => { const p = typeof cmd.payload === 'string' ? JSON.parse(cmd.payload) : cmd.payload; const desc = cmd.type === 'build' ? `Build: ${p.building_id}` : `Recruit: ${p.amount}x ${p.unit_id}`; const statusClass = `status-${cmd.status}`; const cancelBtn = ``; return `| # | Town | Command | Status | Result |
|---|