forked from AkkomaGang/akkoma-fe
Merge branch 'fix/autocomplete-case-insensitive' into 'develop'
Make autocomplete case insensitive Closes #73 See merge request pleroma/pleroma-fe!225
This commit is contained in:
commit
82ee24ec31
1 changed files with 2 additions and 1 deletions
|
@ -53,7 +53,8 @@ const PostStatusForm = {
|
|||
candidates () {
|
||||
const firstchar = this.textAtCaret.charAt(0)
|
||||
if (firstchar === '@') {
|
||||
const matchedUsers = filter(this.users, (user) => (String(user.name + user.screen_name)).match(this.textAtCaret.slice(1)))
|
||||
const matchedUsers = filter(this.users, (user) => (String(user.name + user.screen_name)).toUpperCase()
|
||||
.match(this.textAtCaret.slice(1).toUpperCase()))
|
||||
if (matchedUsers.length <= 0) {
|
||||
return false
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue