diff --git a/app/javascript/mastodon/features/status/components/detailed_status.tsx b/app/javascript/mastodon/features/status/components/detailed_status.tsx
index 9b525b616c7..26a7c3534ca 100644
--- a/app/javascript/mastodon/features/status/components/detailed_status.tsx
+++ b/app/javascript/mastodon/features/status/components/detailed_status.tsx
@@ -271,13 +271,17 @@ export const DetailedStatus: React.FC<{
to={`/@${status.getIn(['account', 'acct'])}/${status.get('id')}/reblogs`}
className='detailed-status__link'
>
-
-
-
+
+
+ ),
+ }}
/>
);
@@ -291,26 +295,34 @@ export const DetailedStatus: React.FC<{
to={`/@${status.getIn(['account', 'acct'])}/${status.get('id')}/quotes`}
className='detailed-status__link'
>
-
-
-
+
+
+ ),
+ }}
/>
);
} else {
quotesLink = (
-
-
-
+
+
+ ),
+ }}
/>
);
@@ -321,13 +333,17 @@ export const DetailedStatus: React.FC<{
to={`/@${status.getIn(['account', 'acct'])}/${status.get('id')}/favourites`}
className='detailed-status__link'
>
-
-
-
+
+
+ ),
+ }}
/>
);