diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-15 14:29:42 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-15 14:29:42 +0900 |
| commit | 28b63298e5750f06191c534097554c86bdb1f46c (patch) | |
| tree | 17c82cc33274a46102c7fdd060302498bddaa729 /src | |
| parent | :art: (diff) | |
| download | misskey-28b63298e5750f06191c534097554c86bdb1f46c.tar.gz misskey-28b63298e5750f06191c534097554c86bdb1f46c.tar.bz2 misskey-28b63298e5750f06191c534097554c86bdb1f46c.zip | |
Increase featured limit
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/home/featured.vue | 2 | ||||
| -rw-r--r-- | src/client/app/mobile/views/pages/featured.vue | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/client/app/desktop/views/home/featured.vue b/src/client/app/desktop/views/home/featured.vue index efebfe4821..5a378dde6f 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: 10 + limit: 15 }).then(notes => { this.notes = notes; this.fetching = false; diff --git a/src/client/app/mobile/views/pages/featured.vue b/src/client/app/mobile/views/pages/featured.vue index f4094e75c8..378a7b8c47 100644 --- a/src/client/app/mobile/views/pages/featured.vue +++ b/src/client/app/mobile/views/pages/featured.vue @@ -36,7 +36,7 @@ export default Vue.extend({ this.fetching = true; this.$root.api('notes/featured', { - limit: 10 + limit: 15 }).then(notes => { this.notes = notes; this.fetching = false; |