Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamie Vigliotta <jamie.j.vigliotta@nasa.gov>2020-07-24 21:26:28 +0300
committerJamie Vigliotta <jamie.j.vigliotta@nasa.gov>2020-07-24 21:26:28 +0300
commit2d8afa1456fc1a4e629c1e7c668853a753c92e62 (patch)
treed6d480c3718b813a88849acd8ca8f572a67faa45
parentf4ef82ef74316db7722c453292b8a623d809ff0c (diff)
parsing datum itself rather than specific key of datum, let telemetry api do the workimagery-timestamp-parsing
-rw-r--r--src/plugins/imagery/components/ImageryViewLayout.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/imagery/components/ImageryViewLayout.vue b/src/plugins/imagery/components/ImageryViewLayout.vue
index e74dbfb7f..eef9d00e8 100644
--- a/src/plugins/imagery/components/ImageryViewLayout.vue
+++ b/src/plugins/imagery/components/ImageryViewLayout.vue
@@ -228,7 +228,7 @@ export default {
subscribe() {
this.unsubscribe = this.openmct.telemetry
.subscribe(this.domainObject, (datum) => {
- let parsedTimestamp = this.timeFormat.parse(datum[this.timeKey]),
+ let parsedTimestamp = this.timeFormat.parse(datum),
bounds = this.openmct.time.bounds();
if(parsedTimestamp >= bounds.start && parsedTimestamp <= bounds.end) {