Increase log limit
This commit is contained in:
parent
8278616eeb
commit
a319b30382
|
@ -66,7 +66,7 @@ export default Vue.extend({
|
||||||
this.$root.api('admin/logs', {
|
this.$root.api('admin/logs', {
|
||||||
level: this.level === 'all' ? null : this.level,
|
level: this.level === 'all' ? null : this.level,
|
||||||
domain: this.domain === '' ? null : this.domain,
|
domain: this.domain === '' ? null : this.domain,
|
||||||
limit: 50
|
limit: 100
|
||||||
}).then(logs => {
|
}).then(logs => {
|
||||||
this.logs = logs.reverse();
|
this.logs = logs.reverse();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue