forked from AkkomaGang/akkoma-fe
select either textarea or input
This commit is contained in:
parent
e8dc019afd
commit
63680227c1
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ const AutoCompleteInput = {
|
||||||
const candidate = this.candidates[this.highlighted]
|
const candidate = this.candidates[this.highlighted]
|
||||||
const replacement = candidate.utf || (candidate.screen_name + ' ')
|
const replacement = candidate.utf || (candidate.screen_name + ' ')
|
||||||
this.text = Completion.replaceWord(this.text, this.wordAtCaret, replacement)
|
this.text = Completion.replaceWord(this.text, this.wordAtCaret, replacement)
|
||||||
const el = this.$el.querySelector('textarea')
|
const el = this.$el.querySelector('textarea') || this.$el.querySelector('input')
|
||||||
el.focus()
|
el.focus()
|
||||||
this.caret = 0
|
this.caret = 0
|
||||||
this.highlighted = 0
|
this.highlighted = 0
|
||||||
|
|
Loading…
Reference in a new issue