Updated 'Clear Sheet' to also clear AI activity log and history

This commit is contained in:
DJP 2025-11-19 22:31:14 -05:00
parent 7885343cbb
commit 6d60d0b223

View file

@ -607,6 +607,10 @@ document.addEventListener('DOMContentLoaded', () => {
spreadsheet.setData([]);
saveData([]); // Force save empty array
updateStats(0);
// Clear AI Log and History
document.getElementById('aiOutput').textContent = 'Waiting for command...';
conversationHistory = [];
}
});
}