Skip to content

Commit

Permalink
Merge pull request #3767 from appirio-tech/hotfix/show-topics-without…
Browse files Browse the repository at this point in the history
…-user-details

[HOTIFX] [PROD] Post release 2.7.2
  • Loading branch information
vikasrohit authored Mar 11, 2020
2 parents 8a2ed6e + 836d92a commit 32cc1e9
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 32cc1e9

Please sign in to comment.