Skip to content

Commit

Permalink
Small bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo committed Jun 9, 2020
1 parent 2179a90 commit 5f437c5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/threads/client/components/ThreadListMessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function ThreadListMessage({ _id, msg, following, username, ts, r
</Margins>
</Box>
</Container>
<Container alignItems='center's>
<Container alignItems='center'>
<Button small square flexShrink={0} ghost data-following={following} data-id={_id} onClick={handleFollowButton} aria-label={actionLabel}><Icon name={button} size='x20'/></Button>
{
(mention && <NotificationStatusMe t={t} mb='x24'/>)
Expand Down
3 changes: 3 additions & 0 deletions app/threads/client/flextab/thread.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,9 @@ Template.thread.onCreated(async function() {

this.loadMore = async () => {
const { tmid } = Tracker.nonreactive(() => this.state.all());
if (!tmid) {
return;
}

this.state.set('loading', true);

Expand Down

0 comments on commit 5f437c5

Please sign in to comment.