Fix log order

This commit is contained in:
syuilo 2019-03-03 08:28:12 +09:00
parent 771f011506
commit 8278616eeb
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}); });
} }
} }