返すタグの数を制限

This commit is contained in:
syuilo 2018-09-07 20:23:46 +09:00
parent f41a9ad88b
commit 9aac072e6c

View File

@ -60,5 +60,7 @@ export default () => new Promise(async (res, rej) => {
// タグを人気順に並べ替え
tags = tags.sort((a, b) => b.count - a.count);
tags = tags.slice(0, 30);
res(tags);
});