From 34e82cbaf281508721f2a01e439d52c7fc05f84c Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Mon, 27 May 2019 17:38:59 -0700 Subject: [PATCH] fix: statuses in own thread should not have cursor:pointer (#1250) --- src/routes/_components/status/Status.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/_components/status/Status.html b/src/routes/_components/status/Status.html index 853ff8f6..e89194f5 100644 --- a/src/routes/_components/status/Status.html +++ b/src/routes/_components/status/Status.html @@ -305,7 +305,7 @@ timelineType !== 'search' && 'status-in-timeline', isStatusInOwnThread && 'status-in-own-thread', $underlineLinks && 'underline-links', - !$disableTapOnStatus && 'tap-on-status' + !$disableTapOnStatus && !isStatusInOwnThread && 'tap-on-status' )), content: ({ originalStatus }) => originalStatus.content || '', showContent: ({ spoilerText, spoilerShown }) => !spoilerText || spoilerShown,