Merge pull request #4892 from jugglinmike/gh-13135-highlight-jump-to-bottom

Highlight "Jump to Bottom" badge when appropriate
This commit is contained in:
Michael Telatynski 2020-07-09 00:20:37 +01:00 committed by GitHub
commit ada68c4220
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 1 deletions

View file

@ -2044,6 +2044,7 @@ export default createReactClass({
if (!this.state.atEndOfLiveTimeline && !this.state.searchResults) {
const JumpToBottomButton = sdk.getComponent('rooms.JumpToBottomButton');
jumpToBottom = (<JumpToBottomButton
highlight={this.state.room.getUnreadNotificationCount('highlight') > 0}
numUnreadMessages={this.state.numUnreadMessages}
onScrollToBottomClick={this.jumpToLiveTimeline}
/>);