Skip to content

Commit

Permalink
candle core时不显示其它core的状态
Browse files Browse the repository at this point in the history
  • Loading branch information
junjiepro committed Oct 18, 2024
1 parent 86e165c commit 7536465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/llm/message.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export default function LLMMessage({
{msg.event?.data.status === "aborted" && (
<Check className="h-4 w-4" />
)}
{msg.usage || msg.abort ? (
{msg.event?.data.status ? null : msg.usage || msg.abort ? (
<Check className="h-4 w-4" />
) : (
<>
Expand Down

0 comments on commit 7536465

Please sign in to comment.