mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Increase featured limit
This commit is contained in:
parent
07e4e553c9
commit
b83238fa12
3 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue