From a319b30382fe13b0dabc4a254cc670b1e19c3516 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 3 Mar 2019 08:28:35 +0900 Subject: [PATCH] Increase log limit --- src/client/app/admin/views/logs.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/app/admin/views/logs.vue b/src/client/app/admin/views/logs.vue index 4f0d6a8b7..9a06d89ba 100644 --- a/src/client/app/admin/views/logs.vue +++ b/src/client/app/admin/views/logs.vue @@ -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(); });