mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
styles
This commit is contained in:
parent
5d825ad970
commit
794c4593e6
1 changed files with 3 additions and 6 deletions
|
|
@ -204,12 +204,9 @@ const VoidCommandBar = ({ uri, editor }: { uri: URI | null, editor: ICodeEditor
|
|||
>→</button>
|
||||
|
||||
<div className="text-[var(--vscode-editor-foreground)] text-xs flex gap-4">
|
||||
{currUriIdx !== null && sortedCommandBarURIs.length ?
|
||||
<div>
|
||||
File {currUriIdx + 1} of {sortedCommandBarURIs.length}
|
||||
</div>
|
||||
: '(No changes)'
|
||||
}
|
||||
{currUriIdx !== null && sortedCommandBarURIs.length && <div>
|
||||
File {currUriIdx + 1} of {sortedCommandBarURIs.length}
|
||||
</div>}
|
||||
{currDiffIdx !== null && sortedDiffIds?.length && <div>
|
||||
Diff {currDiffIdx + 1} of {sortedDiffIds?.length ?? 0}
|
||||
</div>}
|
||||
|
|
|
|||
Loading…
Reference in a new issue