summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/views
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2019-02-26 14:42:24 +0900
committersyuilo <syuilotan@yahoo.co.jp>2019-02-26 14:42:24 +0900
commitb56fed8ed5806c5fec8711db0413f95f33d3834e (patch)
tree6f2a59b41a1e67706bbd8db70417bbdd31b9cef8 /src/client/app/desktop/views
parent:art: (diff)
downloadmisskey-b56fed8ed5806c5fec8711db0413f95f33d3834e.tar.gz
misskey-b56fed8ed5806c5fec8711db0413f95f33d3834e.tar.bz2
misskey-b56fed8ed5806c5fec8711db0413f95f33d3834e.zip
Update notes/featured
Diffstat (limited to 'src/client/app/desktop/views')
-rw-r--r--src/client/app/desktop/views/home/featured.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/home/featured.vue b/src/client/app/desktop/views/home/featured.vue
index 07f9088c2d..1719023289 100644
--- a/src/client/app/desktop/views/home/featured.vue
+++ b/src/client/app/desktop/views/home/featured.vue
@@ -28,7 +28,7 @@ export default Vue.extend({
this.fetching = true;
this.$root.api('notes/featured', {
- limit: 20
+ limit: 30
}).then(notes => {
notes.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime());
this.notes = notes;