diff --git a/src/components/views/avatars/BaseAvatar.js b/src/components/views/avatars/BaseAvatar.js
index 5862a9d4f1..456539b374 100644
--- a/src/components/views/avatars/BaseAvatar.js
+++ b/src/components/views/avatars/BaseAvatar.js
@@ -145,17 +145,33 @@ module.exports = React.createClass({
if (imageUrl === this.state.defaultImageUrl) {
const initialLetter = this._getInitialLetter(name);
- return (
-
- {initialLetter}
-
-
- );
+ if (onClick != null) {
+ return (
+
+ {initialLetter}
+
+
+ );
+ } else {
+ return (
+
+ {initialLetter}
+
+
+ );
+ }
}
if (onClick != null) {
return (