Skip to content

Commit 3c17416

Browse files
committed
Fix all repos label
1 parent 306a12b commit 3c17416

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/browser/components/home.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ export function Home() {
570570
)}
571571
/>
572572
<span className={isAllRepos ? "font-medium" : "font-mono"}>
573-
{isAllRepos ? "All Repos" : repo.name}
573+
{isAllRepos ? modeOption.label : repo.name}
574574
</span>
575575
{repo.mode === "authored-by" && repo.authoredBy && (
576576
<span className="text-muted-foreground">

src/browser/components/pr-review.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@ const KeybindsBar = memo(function KeybindsBar() {
849849
<KeycapGroup keys={["up", "down"]} size="xs" /> select range
850850
</span>
851851
<span className="flex items-center gap-1.5 text-muted-foreground">
852-
<KeycapGroup keys={["cmd", "up"]} size="xs" /> jump 10
852+
<KeycapGroup keys={["cmd", "up", "down"]} size="xs" /> jump 10
853853
</span>
854854
</>
855855
) : (
@@ -861,7 +861,7 @@ const KeybindsBar = memo(function KeybindsBar() {
861861
<KeycapGroup keys={["up", "down"]} size="xs" /> select line
862862
</span>
863863
<span className="flex items-center gap-1.5 text-muted-foreground">
864-
<KeycapGroup keys={["cmd", "up"]} size="xs" /> jump 10
864+
<KeycapGroup keys={["cmd", "up", "down"]} size="xs" /> jump 10
865865
</span>
866866
<span className="flex items-center gap-1.5 text-muted-foreground">
867867
<Keycap keyName="g" size="xs" /> goto line

0 commit comments

Comments
 (0)