diff --git a/src/components/timelines/notification/Follow.tsx b/src/components/timelines/notification/Follow.tsx index a7a97a41..b232cddf 100644 --- a/src/components/timelines/notification/Follow.tsx +++ b/src/components/timelines/notification/Follow.tsx @@ -49,14 +49,16 @@ const Follow: React.FC = props => {
props.setAccountDetail(props.notification.account)} style={{ cursor: 'pointer' }}> {/** action **/} - + {/** icon **/} -
+
-
{actionText(props.notification)}
+
+ {actionText(props.notification)} +
- + diff --git a/src/components/timelines/notification/Move.tsx b/src/components/timelines/notification/Move.tsx index 85391eba..b0de3b62 100644 --- a/src/components/timelines/notification/Move.tsx +++ b/src/components/timelines/notification/Move.tsx @@ -16,14 +16,16 @@ export default function Move(props: Props) {
props.setAccountDetail(props.notification.target)} style={{ cursor: 'pointer' }}> {/** action **/} - + {/** icon **/} -
+
-
{actionText(props.notification)}
+
+ {actionText(props.notification)} +
- + diff --git a/src/components/timelines/notification/Reaction.tsx b/src/components/timelines/notification/Reaction.tsx index 9bc70019..626fc9b1 100644 --- a/src/components/timelines/notification/Reaction.tsx +++ b/src/components/timelines/notification/Reaction.tsx @@ -41,7 +41,7 @@ const actionIcon = (notification: Entity.Notification) => { case 'reaction': if (notification.reaction) { if (notification.reaction.url) { - return + return } else { return } @@ -229,16 +229,18 @@ const Reaction: React.FC = props => {
{/** action **/} - +
{/** icon **/} -
{actionIcon(props.notification)}
-
+
+ {actionIcon(props.notification)} +
+
{actionText(props.notification, props.setAccountDetail)}
- +