clear filter on reopen, fix error message in console

This commit is contained in:
Henry Jameson 2019-11-08 23:57:20 +02:00
parent 23137dfd4b
commit a3501d58d8
1 changed files with 4 additions and 0 deletions

View File

@ -72,6 +72,7 @@ const EmojiPicker = {
},
triggerLoadMore (target) {
const ref = this.$refs['group-end-custom'][0]
if (!ref) return
const bottom = ref.offsetTop + ref.offsetHeight
const scrollerBottom = target.scrollTop + target.clientHeight
@ -109,6 +110,9 @@ const EmojiPicker = {
this.customEmojiBufferSlice += LOAD_EMOJI_BY
},
startEmojiLoad (forceUpdate = false) {
if (!forceUpdate) {
this.keyword = ''
}
this.$nextTick(() => {
this.$refs['emoji-groups'].scrollTop = 0
})