Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const NotificationHeader: FC<INotificationHeader> = ({
event.stopPropagation();
openRepository(notification.repository);
}}
title="Open repository"
title="Open repository"
type="button"
>
<AvatarWithFallback
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const RepositoryNotifications: FC<IRepositoryNotifications> = ({
event.stopPropagation();
openRepository(repoNotifications[0].repository);
}}
title="Open repository"
title="Open repository"
variant="invisible"
>
<AvatarWithFallback
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/renderer/routes/Accounts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const AccountsRoute: FC = () => {
<Button
data-testid="account-profile"
onClick={() => openAccountProfile(account)}
title="Open account profile"
title="Open account profile"
>
<AvatarWithFallback
alt={account.user.login}
Expand Down Expand Up @@ -160,7 +160,7 @@ export const AccountsRoute: FC = () => {
direction="horizontal"
gap="condensed"
onClick={() => openHost(account.hostname)}
title="Open host"
title="Open host"
>
<PlatformIcon />
<Text>{account.hostname}</Text>
Expand All @@ -173,7 +173,7 @@ export const AccountsRoute: FC = () => {
direction="horizontal"
gap="condensed"
onClick={() => openDeveloperSettings(account)}
title="Open developer settings"
title="Open developer settings"
>
<AuthMethodIcon />
<Text>{account.method}</Text>
Expand Down
Loading