Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions apps/web/src/components/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1237,7 +1237,7 @@ export default function Sidebar() {
render={
<button
type="button"
aria-label="Add project"
aria-label={shouldShowProjectPathEntry ? "Cancel add project" : "Add project"}
aria-pressed={shouldShowProjectPathEntry}
className="inline-flex size-5 cursor-pointer items-center justify-center rounded-md text-muted-foreground/60 transition-colors hover:bg-accent hover:text-foreground"
onClick={handleStartAddProject}
Expand All @@ -1250,7 +1250,9 @@ export default function Sidebar() {
}`}
/>
</TooltipTrigger>
<TooltipPopup side="right">Add project</TooltipPopup>
<TooltipPopup side="right">
{shouldShowProjectPathEntry ? "Cancel add project" : "Add project"}
</TooltipPopup>
</Tooltip>
</div>

Expand Down