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: 0af7e453f1908a6adc64d7bc5f40500b26887aae (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]) }));