The file C:\Users\MikeSwanson\Claude\guru-connect\server\static\dashboard.html has been updated. Here's the result of running `cat -n` on a snippet of the edited file: 697→ container.innerHTML = '

Select a machine

Click a machine to view details

'; 698→ return; 699→ } 700→ 701→ const m = selectedMachine; 702→ const started = new Date(m.started_at).toLocaleString(); 703→ const statusColor = m.is_online ? 'hsl(142, 76%, 50%)' : 'hsl(0, 0%, 50%)'; 704→ const statusText = m.is_online ? 'Online' : 'Offline'; 705→ const connectDisabled = m.is_online ? '' : 'disabled'; 706→ const connectTitle = m.is_online ? '' : 'title="Agent is offline"'; 707→ 708→ container.innerHTML = 709→ '
' + 710→ '
Machine Info
' + 711→ '
Status' + statusText + '
' + 712→ '
Agent ID' + m.agent_id.slice(0,8) + '...
' + 713→ '
Session ID' + m.id.slice(0,8) + '...
' + 714→ '
Connected' + started + '
' + 715→ '
Viewers' + m.viewer_count + '
' + 716→ '
' + 717→ '
' + 718→ '
Actions
' + 719→ '' + 720→ '' + 721→ '' + 722→ '' + 723→ '
'; 724→ } 725→ 726→ function connectToMachine(sessionId) { 727→ // Open viewer in new window