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: 482c111b58b3e2ed7b5614f1a1acd7b689e73eb7 (plain)
1
2
3
4
5
import { beautifyPath } from '../../shared/utils';
import { LIST_KEY_PROJECT } from '../constants';

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