mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
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.
This commit is contained in:
parent
5f1237f212
commit
fe8f6ce718
1 changed files with 5 additions and 1 deletions
|
|
@ -639,7 +639,11 @@ const ActivityLogItem: React.FC<ActivityLogItemProps> = ({ record }) => {
|
|||
{status.icon}
|
||||
{status.label}
|
||||
</span>
|
||||
<code className="text-xs font-mono text-vscode-textLink-foreground truncate">
|
||||
<code className="text-xs font-mono text-vscode-textLink-foreground truncate" title={record.hookId}>
|
||||
{record.hookId}
|
||||
</code>
|
||||
<span className="text-vscode-descriptionForeground">·</span>
|
||||
<code className="text-xs font-mono text-vscode-descriptionForeground truncate">
|
||||
{record.event}
|
||||
{record.toolName && ` (${record.toolName})`}
|
||||
</code>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue