Skip to content

Commit

Permalink
Merge pull request #9091 from ggrish/working
Browse files Browse the repository at this point in the history
[FIX] Channel page error
  • Loading branch information
rodrigok committed Dec 15, 2017
1 parent 32bde8f commit 76f82a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/rocketchat-ui/client/views/app/room.js
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,9 @@ Template.room.helpers({
return {
_id: this._id,
onResize: () => {
instance.sendToBottomIfNecessary();
if (instance.sendToBottomIfNecessary) {
instance.sendToBottomIfNecessary();
}
}
};
},
Expand Down

0 comments on commit 76f82a0

Please sign in to comment.