From fe8f6ce718a8a431be4e35745466b3f305ee2de0 Mon Sep 17 00:00:00 2001 From: Toray Altas Date: Sat, 17 Jan 2026 11:48:03 -0500 Subject: [PATCH] feat: display hook ID in activity log Add hook ID to each activity log entry for easier identification of which hook was triggered. Styled with monospace font and link color. --- webview-ui/src/components/settings/HooksSettings.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/webview-ui/src/components/settings/HooksSettings.tsx b/webview-ui/src/components/settings/HooksSettings.tsx index 1a2e9bf8f2..934f8a1308 100644 --- a/webview-ui/src/components/settings/HooksSettings.tsx +++ b/webview-ui/src/components/settings/HooksSettings.tsx @@ -639,7 +639,11 @@ const ActivityLogItem: React.FC = ({ record }) => { {status.icon} {status.label} - + + {record.hookId} + + ยท + {record.event} {record.toolName && ` (${record.toolName})`}