|
|
@@ -146,17 +146,17 @@ const TaskHeader: React.FC<TaskHeaderProps> = ({ taskText, tokensIn, tokensOut,
|
|
|
<span style={{ fontWeight: "bold" }}>Tokens:</span>
|
|
|
<span style={{ display: "flex", alignItems: "center", gap: "3px" }}>
|
|
|
<i
|
|
|
- className="codicon codicon-arrow-down"
|
|
|
- style={{ fontSize: "12px", fontWeight: "bold", marginBottom: "-2px" }}
|
|
|
+ className="codicon codicon-arrow-up"
|
|
|
+ style={{ fontSize: "12px", fontWeight: "bold", marginBottom: "-1.5px" }}
|
|
|
/>
|
|
|
- {tokensOut.toLocaleString()}
|
|
|
+ {tokensIn.toLocaleString()}
|
|
|
</span>
|
|
|
<span style={{ display: "flex", alignItems: "center", gap: "3px" }}>
|
|
|
<i
|
|
|
- className="codicon codicon-arrow-up"
|
|
|
- style={{ fontSize: "12px", fontWeight: "bold", marginBottom: "-1.5px" }}
|
|
|
+ className="codicon codicon-arrow-down"
|
|
|
+ style={{ fontSize: "12px", fontWeight: "bold", marginBottom: "-2px" }}
|
|
|
/>
|
|
|
- {tokensIn.toLocaleString()}
|
|
|
+ {tokensOut.toLocaleString()}
|
|
|
</span>
|
|
|
</div>
|
|
|
<div
|