We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5311e0c commit 1ba632fCopy full SHA for 1ba632f
webview-ui/src/components/chat/TaskHeader.tsx
@@ -277,7 +277,7 @@ const TaskHeader: React.FC<TaskHeaderProps> = ({
277
<div style={{ display: "flex", alignItems: "center", gap: "4px", flexWrap: "wrap" }}>
278
<span style={{ fontWeight: "bold" }}>Context:</span>
279
<span style={{ display: "flex", alignItems: "center", gap: "3px" }}>
280
- {formatLargeNumber(contextTokens || 0)}
+ {contextTokens ? formatLargeNumber(contextTokens) : '-'}
281
</span>
282
</div>
283
0 commit comments