mirror of
https://github.com/nasa/openmct.git
synced 2025-06-23 09:25:29 +00:00
[Events] Changed where row reversal happens
Changed where in the code the row are reveresd (wrt scrolling lists) so that the most recent messages are on the bottom. The rows are now in the correct order from getRows, rather then updateRows. #18.
This commit is contained in:
@ -54,9 +54,6 @@ define(
|
||||
function updateRows() {
|
||||
var telemetry = $scope.telemetry;
|
||||
$scope.rows = telemetry ? getRows(telemetry) : [];
|
||||
// We want to display the rows in reverse order
|
||||
// i.e. from the top to the bottom of the page
|
||||
$scope.rows = $scope.rows.reverse();
|
||||
}
|
||||
|
||||
// Set up columns based on telemetry metadata. This will
|
||||
|
Reference in New Issue
Block a user