From 02576f3d597b3c419df20f2a50aa6e587f1d98bb Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Wed, 18 May 2016 11:15:17 -0400 Subject: PLT-1909 Fixed error rendering pending posts (#3041) * Fixed error caused by checking if a post is a system message * Fixed trying to edit system posts when using the up arrow hotkey --- webapp/components/rhs_comment.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'webapp/components/rhs_comment.jsx') diff --git a/webapp/components/rhs_comment.jsx b/webapp/components/rhs_comment.jsx index c4b62efcf..5bd138732 100644 --- a/webapp/components/rhs_comment.jsx +++ b/webapp/components/rhs_comment.jsx @@ -85,7 +85,7 @@ export default class RhsComment extends React.Component { const isOwner = this.props.currentUser.id === post.user_id; var isAdmin = TeamStore.isTeamAdminForCurrentTeam() || UserStore.isSystemAdminForCurrentUser(); - const isSystemMessage = post.type.startsWith(Constants.SYSTEM_MESSAGE_PREFIX); + const isSystemMessage = post.type && post.type.startsWith(Constants.SYSTEM_MESSAGE_PREFIX); var dropdownContents = []; -- cgit v1.2.3-1-g7c22