Welcome to mirror list, hosted at ThFree Co, Russian Federation.

getters.js « stores « list « packages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85c489deda03d4523a4f3b5fbbc67e1cdf7bf9d5 (plain)
1
2
3
4
5
import { LIST_KEY_PROJECT } from '../constants';
import { beautifyPath } from '../../shared/utils';

export default (state) =>
  state.packages.map((p) => ({ ...p, projectPathName: beautifyPath(p[LIST_KEY_PROJECT]) }));