From 7233c224ce3e75b754c7f9ee6678feefe5198152 Mon Sep 17 00:00:00 2001 From: Agent Date: Sun, 14 Jun 2026 09:07:46 -0400 Subject: [PATCH] fix: set status='active' on command_history insert so history displays --- src/Models/CommandHistory.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Models/CommandHistory.php b/src/Models/CommandHistory.php index 2f1c610..c2af2ad 100755 --- a/src/Models/CommandHistory.php +++ b/src/Models/CommandHistory.php @@ -23,6 +23,7 @@ class CommandHistory 'command' => $command, 'output' => mb_substr($output ?? '', 0, 65535), 'exit_status' => $exitStatus, + 'status' => 'active', 'executed_at' => date('Y-m-d H:i:s'), ]); }