Skip to content

Commit

Permalink
Initialise log with most recent first
Browse files Browse the repository at this point in the history
  • Loading branch information
mcartmel committed Jul 3, 2020
1 parent 812ce7e commit 66ee0aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodel-webui-js/src/nodel.js
Original file line number Diff line number Diff line change
Expand Up @@ -2434,7 +2434,7 @@ var process_log = function(log, idx){
'timestamp': log.timestamp,
'seq': log.seq
};
$.observable(data).insert(entry);
$.observable(data).insert(0, entry);
}
// animate icon
if(!log.ani) {
Expand Down

0 comments on commit 66ee0aa

Please sign in to comment.