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

issuable.js « mixins « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 263361587e0b5c6e1d18b3d4c15d406111f143af (plain)
1
2
3
4
5
6
7
8
9
export default {
  methods: {
    issuableDisplayName(issuableType) {
      const displayName = issuableType.replace(/_/, ' ');

      return this.__ ? this.__(displayName) : displayName;
    },
  },
};