Increase log limit

This commit is contained in:
syuilo 2019-03-03 08:28:35 +09:00
parent 8278616eeb
commit a319b30382
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -66,7 +66,7 @@ export default Vue.extend({
this.$root.api('admin/logs', {
level: this.level === 'all' ? null : this.level,
domain: this.domain === '' ? null : this.domain,
limit: 50
limit: 100
}).then(logs => {
this.logs = logs.reverse();
});