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: fab0919d96ede945a6765a79d893f536c859d311 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export default {
  props: {
    issuableType: {
      required: true,
      type: String,
    },
  },

  computed: {
    issuableDisplayName() {
      return this.issuableType.replace(/_/g, ' ');
    },
  },
};