fix: statuses in own thread should not have cursor:pointer (#1250)

This commit is contained in:
Nolan Lawson 2019-05-27 17:38:59 -07:00 committed by GitHub
parent f1857cb86e
commit 34e82cbaf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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,