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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/vue_shared/mixins/issuable.js')
-rw-r--r--app/assets/javascripts/vue_shared/mixins/issuable.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/assets/javascripts/vue_shared/mixins/issuable.js b/app/assets/javascripts/vue_shared/mixins/issuable.js
deleted file mode 100644
index fab0919d96e..00000000000
--- a/app/assets/javascripts/vue_shared/mixins/issuable.js
+++ /dev/null
@@ -1,14 +0,0 @@
-export default {
- props: {
- issuableType: {
- required: true,
- type: String,
- },
- },
-
- computed: {
- issuableDisplayName() {
- return this.issuableType.replace(/_/g, ' ');
- },
- },
-};