diff --git a/src/containers/BGroup/BGroupItem.js b/src/containers/BGroup/BGroupItem.js index 4f313cbc0a83d218304c6e0e2225ec0c2c75bb9d..5de7007aaf51fca982e3b22bbd9ed189a7210def 100644 --- a/src/containers/BGroup/BGroupItem.js +++ b/src/containers/BGroup/BGroupItem.js @@ -17,7 +17,8 @@ class BGroupItem extends Component { let username = this.props.user_created.name; let displayTime = bGroup.time_created.toLocaleString(); - if (bGroup.time_modified !== null && bGroup.time_modified !== undefined) { + if (bGroup.time_modified !== null && bGroup.time_modified !== undefined + && this.props.user_modified !== undefined && this.props.user_modified !== null) { displayText = 'Updated'; username = this.props.user_modified.name; displayTime = bGroup.time_modified.toLocaleString();