diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2017-11-08 16:53:34 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2017-11-08 16:53:34 +0900 |
| commit | a5b5999cc68e34ad57b80dc74e9e2d1418f2ef1b (patch) | |
| tree | abe1a527846ff232f2f659c0ceb6e8545dfd758e /src/web | |
| parent | Fix bug (diff) | |
| download | misskey-a5b5999cc68e34ad57b80dc74e9e2d1418f2ef1b.tar.gz misskey-a5b5999cc68e34ad57b80dc74e9e2d1418f2ef1b.tar.bz2 misskey-a5b5999cc68e34ad57b80dc74e9e2d1418f2ef1b.zip | |
より多くのスレッドを表示するように
Diffstat (limited to 'src/web')
| -rw-r--r-- | src/web/app/ch/tags/index.tag | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/web/app/ch/tags/index.tag b/src/web/app/ch/tags/index.tag index 50ccc0d91c..5f3871802a 100644 --- a/src/web/app/ch/tags/index.tag +++ b/src/web/app/ch/tags/index.tag @@ -15,7 +15,9 @@ this.mixin('api'); this.on('mount', () => { - this.api('channels').then(channels => { + this.api('channels', { + limit: 100 + }).then(channels => { this.update({ channels: channels }); |