mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Fix log order
This commit is contained in:
parent
a2cde9731e
commit
2630b34eca
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ export default Vue.extend({
|
||||||
domain: this.domain === '' ? null : this.domain,
|
domain: this.domain === '' ? null : this.domain,
|
||||||
limit: 50
|
limit: 50
|
||||||
}).then(logs => {
|
}).then(logs => {
|
||||||
this.logs = logs;
|
this.logs = logs.reverse();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue