~cytrogen/masto-fe

4caa9f0e69f922ce70af50d695cc84a7f551534f — Claire 2 years ago d9a9323
Change the hashtag column to not display the hashtag header on pinned columns (#26416)

1 files changed, 1 insertions(+), 1 deletions(-)

M app/javascript/mastodon/features/hashtag_timeline/index.jsx
M app/javascript/mastodon/features/hashtag_timeline/index.jsx => app/javascript/mastodon/features/hashtag_timeline/index.jsx +1 -1
@@ 203,7 203,7 @@ class HashtagTimeline extends PureComponent {
        </ColumnHeader>

        <StatusListContainer
          prepend={<HashtagHeader tag={tag} disabled={!signedIn} onClick={this.handleFollow} />}
          prepend={pinned ? null : <HashtagHeader tag={tag} disabled={!signedIn} onClick={this.handleFollow} />}
          alwaysPrepend
          trackScroll={!pinned}
          scrollKey={`hashtag_timeline-${columnId}`}