From 6d60d0b2238efb4ec95bf62f1ae9de786cd8f64d Mon Sep 17 00:00:00 2001 From: DJP Date: Wed, 19 Nov 2025 22:31:14 -0500 Subject: [PATCH] Updated 'Clear Sheet' to also clear AI activity log and history --- script.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/script.js b/script.js index e30658b..fcd37c7 100644 --- a/script.js +++ b/script.js @@ -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 = []; } }); }