Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
fix node log being reversed
Browse files Browse the repository at this point in the history
  • Loading branch information
derhuerst committed Oct 24, 2016
1 parent 8cf9934 commit 561f0f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/views/Status/components/Debug/Debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default class Debug extends Component {

return (
<pre className={ styles.logs }>
{ devLogs.join('\n') }
{ devLogs.reverse().join('\n') }
</pre>
);
}
Expand Down

0 comments on commit 561f0f3

Please sign in to comment.