Skip to content
Snippets Groups Projects
Unverified Commit 8278616e authored by syuilo's avatar syuilo
Browse files

Fix log order

parent 771f0115
No related branches found
No related tags found
No related merge requests found
......@@ -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();
});
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment