Merge branch 'fix/no-autocomplete-in-non-post-forms' into 'develop'

hotfix/this fixes #350 - v-model binding issue

Closes #350

See merge request pleroma/pleroma-fe!573
This commit is contained in:
Shpuld Shpludson 2019-02-13 04:48:05 +00:00
commit d6f9f34ad8
1 changed files with 1 additions and 0 deletions

View File

@ -126,6 +126,7 @@ const AutoCompleteInput = {
const candidate = this.candidates[this.highlighted]
const replacement = candidate.utf || (candidate.screen_name + ' ')
this.text = Completion.replaceWord(this.text, this.wordAtCaret, replacement)
this.$emit('input', this.text)
const el = this.$el.querySelector('textarea') || this.$el.querySelector('input')
el.focus()
this.caret = 0