mirror of
https://github.com/nasa/openmct.git
synced 2025-06-21 00:23:01 +00:00
[Table] #742 Fixed digest-related bug in RTTelemetryController
Fixed failing test
This commit is contained in:
@ -89,9 +89,9 @@ define(
|
||||
datum = self.handle.getDatum(telemetryObject);
|
||||
if (datum) {
|
||||
row = self.table.getRowValues(telemetryObject, datum);
|
||||
self.$scope.rows = self.$scope.rows || [];
|
||||
if (!self.$scope.rows){
|
||||
self.$scope.rows = [row];
|
||||
self.$scope.$digest();
|
||||
} else {
|
||||
self.$scope.rows.push(row);
|
||||
self.$scope.$broadcast('add:row',
|
||||
|
Reference in New Issue
Block a user