Merge branch 'backport-disable-autocomplete' into 'master'
Backport disable autocomplete See merge request gitlab-org/gitlab-ce!15557
This commit is contained in:
commit
25a3a1838a
4 changed files with 28 additions and 3 deletions
|
@ -34,6 +34,11 @@ export default {
|
|||
required: false,
|
||||
default: true,
|
||||
},
|
||||
enableAutocomplete: {
|
||||
type: Boolean,
|
||||
required: false,
|
||||
default: true,
|
||||
},
|
||||
issuableRef: {
|
||||
type: String,
|
||||
required: true,
|
||||
|
@ -240,6 +245,7 @@ export default {
|
|||
:project-namespace="projectNamespace"
|
||||
:show-delete-button="showDeleteButton"
|
||||
:can-attach-file="canAttachFile"
|
||||
:enable-autocomplete="enableAutocomplete"
|
||||
/>
|
||||
<div v-else>
|
||||
<title-component
|
||||
|
|
|
@ -22,6 +22,11 @@
|
|||
required: false,
|
||||
default: true,
|
||||
},
|
||||
enableAutocomplete: {
|
||||
type: Boolean,
|
||||
required: false,
|
||||
default: true,
|
||||
},
|
||||
},
|
||||
components: {
|
||||
markdownField,
|
||||
|
@ -42,7 +47,9 @@
|
|||
<markdown-field
|
||||
:markdown-preview-path="markdownPreviewPath"
|
||||
:markdown-docs-path="markdownDocsPath"
|
||||
:can-attach-file="canAttachFile">
|
||||
:can-attach-file="canAttachFile"
|
||||
:enable-autocomplete="enableAutocomplete"
|
||||
>
|
||||
<textarea
|
||||
id="issue-description"
|
||||
class="note-textarea js-gfm-input js-autosize markdown-area"
|
||||
|
|
|
@ -46,6 +46,11 @@
|
|||
required: false,
|
||||
default: true,
|
||||
},
|
||||
enableAutocomplete: {
|
||||
type: Boolean,
|
||||
required: false,
|
||||
default: true,
|
||||
},
|
||||
},
|
||||
components: {
|
||||
lockedWarning,
|
||||
|
@ -89,7 +94,9 @@
|
|||
:form-state="formState"
|
||||
:markdown-preview-path="markdownPreviewPath"
|
||||
:markdown-docs-path="markdownDocsPath"
|
||||
:can-attach-file="canAttachFile" />
|
||||
:can-attach-file="canAttachFile"
|
||||
:enable-autocomplete="enableAutocomplete"
|
||||
/>
|
||||
<edit-actions
|
||||
:form-state="formState"
|
||||
:can-destroy="canDestroy"
|
||||
|
|
|
@ -30,6 +30,11 @@
|
|||
required: false,
|
||||
default: true,
|
||||
},
|
||||
enableAutocomplete: {
|
||||
type: Boolean,
|
||||
required: false,
|
||||
default: true,
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
@ -97,7 +102,7 @@
|
|||
/*
|
||||
GLForm class handles all the toolbar buttons
|
||||
*/
|
||||
return new GLForm($(this.$refs['gl-form']), true);
|
||||
return new GLForm($(this.$refs['gl-form']), this.enableAutocomplete);
|
||||
},
|
||||
beforeDestroy() {
|
||||
const glForm = $(this.$refs['gl-form']).data('gl-form');
|
||||
|
|
Loading…
Reference in a new issue