diff options
| author | Wyatt Benno <wyattbenno@gmail.com> | 2019-07-18 03:40:02 +0000 |
|---|---|---|
| committer | Shpuld Shpludson <shp@cock.li> | 2019-07-18 03:40:02 +0000 |
| commit | 5909baba7c06ebb015f37c0800001b7ab1d71c77 (patch) | |
| tree | f6e93f013ffd4d5383f623f0b3629f1c1cc2fd7a /src/components/post_status_form | |
| parent | cc2e35f4999a16a6647887f1c4f09e2b19a54b3e (diff) | |
Add user search at
Diffstat (limited to 'src/components/post_status_form')
| -rw-r--r-- | src/components/post_status_form/post_status_form.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/post_status_form/post_status_form.js b/src/components/post_status_form/post_status_form.js index ef6b0fce..36d0d74f 100644 --- a/src/components/post_status_form/post_status_form.js +++ b/src/components/post_status_form/post_status_form.js @@ -104,7 +104,8 @@ const PostStatusForm = { ...this.$store.state.instance.emoji, ...this.$store.state.instance.customEmoji ], - users: this.$store.state.users.users + users: this.$store.state.users.users, + updateUsersList: (input) => this.$store.dispatch('searchUsers', input) }) }, emojiSuggestor () { |
