diff --git a/apps/desktop/src/renderer/routes/_authenticated/_dashboard/components/TopBar/TopBar.tsx b/apps/desktop/src/renderer/routes/_authenticated/_dashboard/components/TopBar/TopBar.tsx index 4e868f06e40..cf6aa6e39af 100644 --- a/apps/desktop/src/renderer/routes/_authenticated/_dashboard/components/TopBar/TopBar.tsx +++ b/apps/desktop/src/renderer/routes/_authenticated/_dashboard/components/TopBar/TopBar.tsx @@ -33,7 +33,7 @@ export function TopBar() { {workspace?.project?.name && (
- + {[workspace.project.name, workspace.name] .filter(Boolean) .join(" - ")} diff --git a/apps/desktop/src/renderer/routes/_authenticated/_dashboard/components/TopBar/components/OpenInMenuButton/OpenInMenuButton.tsx b/apps/desktop/src/renderer/routes/_authenticated/_dashboard/components/TopBar/components/OpenInMenuButton/OpenInMenuButton.tsx index e152554b311..14e6b026e83 100644 --- a/apps/desktop/src/renderer/routes/_authenticated/_dashboard/components/TopBar/components/OpenInMenuButton/OpenInMenuButton.tsx +++ b/apps/desktop/src/renderer/routes/_authenticated/_dashboard/components/TopBar/components/OpenInMenuButton/OpenInMenuButton.tsx @@ -84,8 +84,9 @@ export const OpenInMenuButton = memo(function OpenInMenuButton({ type="button" onClick={handleOpenInEditor} disabled={isLoading} + aria-label={`Open in ${currentApp.displayLabel ?? currentApp.label}`} className={cn( - "group flex items-center gap-1.5 h-6 pl-1.5 pr-2 rounded-l border border-r-0 border-border/60 bg-secondary/50 text-xs font-medium", + "group flex items-center gap-1.5 h-6 px-1.5 sm:pl-1.5 sm:pr-2 rounded-l border border-r-0 border-border/60 bg-secondary/50 text-xs font-medium", "transition-all duration-150 ease-out", "hover:bg-secondary hover:border-border", "focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring", @@ -99,11 +100,13 @@ export const OpenInMenuButton = memo(function OpenInMenuButton({ className="size-3.5 object-contain shrink-0" /> {branch && ( - + /{branch} )} - Open + + Open +