We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 825973d + b0174d2 commit 665ae6aCopy full SHA for 665ae6a
src/common/helper.js
@@ -159,7 +159,9 @@ async function getMemberDetailsByUserIds (userIds) {
159
'Content-Type': 'application/json',
160
Authorization: `Bearer ${token}`
161
}
162
- }).then(res => _.get(res, 'data.result.content', null))
+ }).then((res) => {
163
+ return _.get(res, 'data.result.content', null)
164
+ })
165
} catch (err) {
166
return Promise.reject(err)
167
0 commit comments