Replace tab indentation with spaces

This commit is contained in:
Francis Dinh 2018-04-11 04:28:27 -04:00
parent 3d8d941d89
commit 11a89ee06d

View file

@ -54,7 +54,7 @@ const PostStatusForm = {
const firstchar = this.textAtCaret.charAt(0)
if (firstchar === '@') {
const matchedUsers = filter(this.users, (user) => (String(user.name + user.screen_name)).toUpperCase()
.match(this.textAtCaret.slice(1).toUpperCase()))
.match(this.textAtCaret.slice(1).toUpperCase()))
if (matchedUsers.length <= 0) {
return false
}