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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-02-09 18:07:50 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-09 18:07:50 +0300
commit608d6aaa3d80a33862ca2c29d96bfd687b1a011b (patch)
tree665f96928bb42b40cbc34d70a09ee951f15fb468 /app/assets/javascripts/vue_shared/components/markdown/field.vue
parent6180f62ab34662c64103872b8352b25817b73a8d (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/vue_shared/components/markdown/field.vue')
-rw-r--r--app/assets/javascripts/vue_shared/components/markdown/field.vue6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/assets/javascripts/vue_shared/components/markdown/field.vue b/app/assets/javascripts/vue_shared/components/markdown/field.vue
index 7b76fc3fc6d..6f4cddbdfa2 100644
--- a/app/assets/javascripts/vue_shared/components/markdown/field.vue
+++ b/app/assets/javascripts/vue_shared/components/markdown/field.vue
@@ -82,6 +82,11 @@ export default {
required: false,
default: true,
},
+ autocompleteDataSources: {
+ type: Object,
+ required: false,
+ default: () => ({}),
+ },
line: {
type: Object,
required: false,
@@ -257,6 +262,7 @@ export default {
contacts: this.enableAutocomplete,
},
true,
+ this.autocompleteDataSources,
);
},
beforeDestroy() {