feat: Introduce document processing indicator UI, update localization.

This commit is contained in:
Anish Sarkar 2025-12-27 19:09:42 +05:30
parent 65dc97df99
commit a956b5ff87
6 changed files with 85 additions and 8 deletions

View file

@ -220,10 +220,7 @@ const ThinkingStepsDisplay: FC<{ steps: ThinkingStep[]; isThreadRunning?: boolea
{step.items && step.items.length > 0 && (
<div className="mt-1 space-y-0.5">
{step.items.map((item, idx) => (
<ChainOfThoughtItem
key={`${step.id}-item-${idx}`}
className="text-xs"
>
<ChainOfThoughtItem key={`${step.id}-item-${idx}`} className="text-xs">
{item}
</ChainOfThoughtItem>
))}