Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
bwindels committed Jan 22, 2019
1 parent 689df1b commit 85b5584
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/rooms/JumpToBottomButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import AccessibleButton from '../elements/AccessibleButton';
export default (props) => {
let badge;
if (props.numUnreadMessages) {
badge = <div className="mx_JumpToBottomButton_badge">{props.numUnreadMessages}</div>
badge = (<div className="mx_JumpToBottomButton_badge">{props.numUnreadMessages}</div>);
}
return (<div className="mx_JumpToBottomButton">
<AccessibleButton className="mx_JumpToBottomButton_scrollDown"
Expand Down

0 comments on commit 85b5584

Please sign in to comment.