This commit is contained in:
Andrew Pareles 2025-03-21 21:20:57 -07:00
parent 22dd42ba70
commit 75f1a2d79b

View file

@ -274,12 +274,12 @@ const VoidCommandBar = ({ uri, editor }: VoidCommandBarProps) => {
{downButton}
{upButton}
<span className="min-w-16 px-2 text-xs">
{isADiffInThisFile ?
`Diff ${(currDiffIdx ?? 0) + 1} of ${sortedDiffIds.length}`
: streamState === 'streaming' ?
'No changes yet'
: `No changes`
}
{isADiffInThisFile ?
`Diff ${(currDiffIdx ?? 0) + 1} of ${sortedDiffIds.length}`
: streamState === 'streaming' ?
'No changes yet'
: `No changes`
}
</span>
</div>