Skip to content
代码片段 群组 项目
未验证 提交 ccb0d47c 编辑于 作者: Lee Tickett's avatar Lee Tickett 提交者: GitLab
浏览文件

Refactor achievements app to leverage uniqBy

上级 337c90ef
No related branches found
No related tags found
无相关合并请求
......@@ -7,7 +7,7 @@ import {
GlKeysetPagination,
GlLoadingIcon,
} from '@gitlab/ui';
import { groupBy } from 'lodash';
import { uniqBy } from 'lodash';
import { s__ } from '~/locale';
import UserAvatarList from '~/vue_shared/components/user_avatar/user_avatar_list.vue';
import { NEW_ROUTE_NAME } from '../constants';
......@@ -103,9 +103,7 @@ export default {
};
},
uniqueRecipients(userAchievements) {
return Object.entries(groupBy(userAchievements, 'user.id')).map(([, values]) => {
return values[0].user;
});
return uniqBy(userAchievements, 'user.id').map(({ user }) => user);
},
},
i18n: {
......
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册