This commit is contained in:
syuilo
2018-11-06 02:05:16 +09:00
parent 64f89ba13e
commit 6d8ea89f09
2 changed files with 6 additions and 1 deletions

View File

@ -215,6 +215,11 @@ export default Vue.extend({
}
}
} else if (this.type == 'emoji') {
if (this.q == null || this.q == '') {
this.emojis = this.emojiDb.filter(x => x.isCustomEmoji && !x.aliasOf);
return;
}
const matched = [];
const max = 30;