summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-11-08 16:53:34 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-11-08 16:53:34 +0900
commita5b5999cc68e34ad57b80dc74e9e2d1418f2ef1b (patch)
treeabe1a527846ff232f2f659c0ceb6e8545dfd758e /src
parentFix bug (diff)
downloadmisskey-a5b5999cc68e34ad57b80dc74e9e2d1418f2ef1b.tar.gz
misskey-a5b5999cc68e34ad57b80dc74e9e2d1418f2ef1b.tar.bz2
misskey-a5b5999cc68e34ad57b80dc74e9e2d1418f2ef1b.zip
より多くのスレッドを表示するように
Diffstat (limited to 'src')
-rw-r--r--src/web/app/ch/tags/index.tag4
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
});