Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/projects/actions/projectTopics.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ const getProjectTopicsWithMember = (dispatch, projectId, tag) => {
resolve(value)
return dispatch(loadMembers(userIds))
.then(() => resolve(value))
.catch(err => reject(err))
// even if we failed to load user details for topics we should still proceed to show the topics and don't fail
.catch(() => resolve(value))
})
.catch(err => reject(err))
})
Expand Down