Update webview-ui/src/components/chat/TaskHeader.tsx

Co-authored-by: Matt Rubens <mrubens@users.noreply.github.com>
This commit is contained in:
Murilo Pires
2025-01-28 00:39:40 -03:00
committed by GitHub
parent 5311e0c8ab
commit 1ba632fe89

View File

@@ -277,7 +277,7 @@ const TaskHeader: React.FC<TaskHeaderProps> = ({
<div style={{ display: "flex", alignItems: "center", gap: "4px", flexWrap: "wrap" }}> <div style={{ display: "flex", alignItems: "center", gap: "4px", flexWrap: "wrap" }}>
<span style={{ fontWeight: "bold" }}>Context:</span> <span style={{ fontWeight: "bold" }}>Context:</span>
<span style={{ display: "flex", alignItems: "center", gap: "3px" }}> <span style={{ display: "flex", alignItems: "center", gap: "3px" }}>
{formatLargeNumber(contextTokens || 0)} {contextTokens ? formatLargeNumber(contextTokens) : '-'}
</span> </span>
</div> </div>