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

View file

@ -68,7 +68,7 @@ export default Vue.extend({
domain: this.domain === '' ? null : this.domain,
limit: 50
}).then(logs => {
this.logs = logs;
this.logs = logs.reverse();
});
}
}