diff options
| author | Henry Jameson <me@hjkos.com> | 2022-03-22 18:14:56 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-03-22 18:22:23 +0200 |
| commit | 9d7a7e2019601dd1f7877d8fce2a07c5e459941e (patch) | |
| tree | 8a06c7ba638a5303eb1cd8857178a34ff7839c2a /src | |
| parent | c2cf13fc006aa1e513feb99799a8d2df14119eca (diff) | |
fix emoji input tests
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/emoji_input/emoji_input.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/components/emoji_input/emoji_input.js b/src/components/emoji_input/emoji_input.js index 5b51da18..e772bf75 100644 --- a/src/components/emoji_input/emoji_input.js +++ b/src/components/emoji_input/emoji_input.js @@ -189,8 +189,11 @@ const EmojiInput = { img: imageUrl || '' })) }, - suggestions (newValue) { - this.$nextTick(this.resize) + suggestions: { + handler (newValue) { + this.$nextTick(this.resize) + }, + deep: true } }, methods: { |
