mirror of
https://github.com/nasa/openmct.git
synced 2025-06-23 01:18:57 +00:00
[Tables] Default UTC time system if available and none others defined
This commit is contained in:
@ -84,7 +84,7 @@ define(
|
||||
};
|
||||
|
||||
TelemetryCollection.prototype.inBounds = function (element) {
|
||||
var noBoundsDefined = !this.lastBounds || (!this.lastBounds.start && !this.lastBounds.end);
|
||||
var noBoundsDefined = !this.lastBounds || (this.lastBounds.start === undefined && this.lastBounds.end === undefined);
|
||||
var withinBounds =
|
||||
_.get(element, this.sortField) >= this.lastBounds.start &&
|
||||
_.get(element, this.sortField) <= this.lastBounds.end;
|
||||
@ -114,7 +114,7 @@ define(
|
||||
array = this.highBuffer;
|
||||
}
|
||||
} else {
|
||||
array = this.highBuffer;
|
||||
array = this.telemetry;
|
||||
}
|
||||
|
||||
// If out of bounds low, disregard data
|
||||
|
@ -391,7 +391,7 @@ define(
|
||||
getDomainObjects()
|
||||
.then(filterForTelemetry)
|
||||
.then(this.loadColumns)
|
||||
//.then(this.subscribeToNewData)
|
||||
.then(this.subscribeToNewData)
|
||||
.then(this.getHistoricalData)
|
||||
.catch(error)
|
||||
};
|
||||
|
Reference in New Issue
Block a user