Skip to content

Commit f30f092

Browse files
author
vikasrohit
authored
Merge pull request #631 from appirio-tech/feature/copy_update_for_missing_user
Github issue#625, Project 908: Dashboard stuck in infinite loop
2 parents 6537df5 + 11c92d6 commit f30f092

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Feed/FeedComments.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class FeedComments extends React.Component {
7070
<Comment
7171
key={idx}
7272
avatarUrl={ _.get(item, 'author.photoURL', null) }
73-
authorName={ item.author ? (item.author.firstName + ' ' + item.author.lastName) : 'Not Available' }
73+
authorName={ item.author ? (item.author.firstName + ' ' + item.author.lastName) : 'Connect user' }
7474
date={moment(item.date).fromNow()}
7575
active={item.unread}
7676
self={ item.author && item.author.userId === currentUser.userId}

src/components/MessageDetails/MessageDetails.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class MessageDetails extends React.Component {
4646
<Comment
4747
key={idx}
4848
avatarUrl={ _.get(item, 'author.photoURL', null) }
49-
authorName={ item.author ? (item.author.firstName + ' ' + item.author.lastName) : 'Not Available' }
49+
authorName={ item.author ? (item.author.firstName + ' ' + item.author.lastName) : 'Connect user' }
5050
date={moment(item.date).fromNow()}
5151
active={item.unread}
5252
self={ item.author && item.author.userId === currentUser.userId }

0 commit comments

Comments
 (0)