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

issue-1243
Nolan Lawson 2019-05-27 17:38:59 -07:00 zatwierdzone przez GitHub
rodzic f1857cb86e
commit 34e82cbaf2
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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