Increase featured limit

This commit is contained in:
syuilo 2019-02-15 15:01:05 +09:00
parent 6752cf1d64
commit dff65810c6
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
3 changed files with 3 additions and 3 deletions

View file

@ -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;

View file

@ -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;

View file

@ -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;