Skip to content

Commit 32cc1e9

Browse files
author
vikasrohit
authored
Merge pull request #3767 from appirio-tech/hotfix/show-topics-without-user-details
[HOTIFX] [PROD] Post release 2.7.2
2 parents 8a2ed6e + 836d92a commit 32cc1e9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/projects/actions/projectTopics.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@ const getProjectTopicsWithMember = (dispatch, projectId, tag) => {
6868
resolve(value)
6969
return dispatch(loadMembers(userIds))
7070
.then(() => resolve(value))
71-
.catch(err => reject(err))
71+
// even if we failed to load user details for topics we should still proceed to show the topics and don't fail
72+
.catch(() => resolve(value))
7273
})
7374
.catch(err => reject(err))
7475
})

0 commit comments

Comments
 (0)