Skip to content

Commit c60d05f

Browse files
authored
refactor: external link indicator (#2372)
Signed-off-by: Adam Setch <adam.setch@outlook.com>
1 parent 600f6b8 commit c60d05f

File tree

8 files changed

+53
-53
lines changed

8 files changed

+53
-53
lines changed

src/renderer/components/notifications/NotificationHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export const NotificationHeader: FC<INotificationHeader> = ({
3838
event.stopPropagation();
3939
openRepository(notification.repository);
4040
}}
41-
title="Open repository"
41+
title="Open repository"
4242
type="button"
4343
>
4444
<AvatarWithFallback

src/renderer/components/notifications/RepositoryNotifications.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export const RepositoryNotifications: FC<IRepositoryNotifications> = ({
7878
event.stopPropagation();
7979
openRepository(repoNotifications[0].repository);
8080
}}
81-
title="Open repository"
81+
title="Open repository"
8282
variant="invisible"
8383
>
8484
<AvatarWithFallback

src/renderer/components/notifications/__snapshots__/AccountNotifications.test.tsx.snap

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/renderer/components/notifications/__snapshots__/NotificationHeader.test.tsx.snap

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/renderer/components/notifications/__snapshots__/NotificationRow.test.tsx.snap

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/renderer/components/notifications/__snapshots__/RepositoryNotifications.test.tsx.snap

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/renderer/routes/Accounts.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export const AccountsRoute: FC = () => {
125125
<Button
126126
data-testid="account-profile"
127127
onClick={() => openAccountProfile(account)}
128-
title="Open account profile"
128+
title="Open account profile"
129129
>
130130
<AvatarWithFallback
131131
alt={account.user.login}
@@ -160,7 +160,7 @@ export const AccountsRoute: FC = () => {
160160
direction="horizontal"
161161
gap="condensed"
162162
onClick={() => openHost(account.hostname)}
163-
title="Open host"
163+
title="Open host"
164164
>
165165
<PlatformIcon />
166166
<Text>{account.hostname}</Text>
@@ -173,7 +173,7 @@ export const AccountsRoute: FC = () => {
173173
direction="horizontal"
174174
gap="condensed"
175175
onClick={() => openDeveloperSettings(account)}
176-
title="Open developer settings"
176+
title="Open developer settings"
177177
>
178178
<AuthMethodIcon />
179179
<Text>{account.method}</Text>

0 commit comments

Comments
 (0)