diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-15 15:01:05 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-15 15:01:05 +0900 |
| commit | dff65810c6c20e2d80a90aab04ab3e26ffc77143 (patch) | |
| tree | eaf8f0e4754244bf340a791dfcd4eb9db7368675 /src | |
| parent | :art: (diff) | |
| download | misskey-dff65810c6c20e2d80a90aab04ab3e26ffc77143.tar.gz misskey-dff65810c6c20e2d80a90aab04ab3e26ffc77143.tar.bz2 misskey-dff65810c6c20e2d80a90aab04ab3e26ffc77143.zip | |
Increase featured limit
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/deck/deck.featured-column.vue | 2 | ||||
| -rw-r--r-- | src/client/app/desktop/views/home/featured.vue | 2 | ||||
| -rw-r--r-- | src/client/app/mobile/views/pages/featured.vue | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/client/app/desktop/views/deck/deck.featured-column.vue b/src/client/app/desktop/views/deck/deck.featured-column.vue index bd2e99ba48..77d19e54c9 100644 --- a/src/client/app/desktop/views/deck/deck.featured-column.vue +++ b/src/client/app/desktop/views/deck/deck.featured-column.vue @@ -42,7 +42,7 @@ export default Vue.extend({ (this.$refs.timeline as any).init(() => new Promise((res, rej) => { this.$root.api('notes/featured', { - limit: 15, + limit: 20, }).then(notes => { res(notes); this.fetching = false; diff --git a/src/client/app/desktop/views/home/featured.vue b/src/client/app/desktop/views/home/featured.vue index 5a378dde6f..5b480d6455 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: 15 + limit: 20 }).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 378a7b8c47..0479bf73f8 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: 15 + limit: 20 }).then(notes => { this.notes = notes; this.fetching = false; |