Skip to content

Commit 9992e59

Browse files
authored
Merge branch 'master' into fix-couchdb
2 parents 401b7b4 + 351800b commit 9992e59

File tree

4 files changed

+24
-5
lines changed

4 files changed

+24
-5
lines changed

.npmrc

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
loglevel=warn
22

33
#Prevent folks from ignoring an important error when building from source
4-
engine-strict=true
4+
engine-strict=true
5+
6+
# Dont include lockfile
7+
package-lock=false

package.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@
111111
"cov:unit:publish": "codecov --disable=gcov -f ./coverage/unit/lcov.info -F unit",
112112
"prepare": "npm run build:prod && npx tsc"
113113
},
114+
"homepage": "https://nasa.github.io/openmct",
114115
"repository": {
115116
"type": "git",
116117
"url": "https://github.com/nasa/openmct.git"
@@ -126,6 +127,12 @@
126127
"ios_saf >= 16",
127128
"Safari >= 16"
128129
],
129-
"author": "National Aeronautics and Space Administration",
130-
"license": "Apache-2.0"
130+
"author": {
131+
"name": "National Aeronautics and Space Administration",
132+
"url": "https://www.nasa.gov"
133+
},
134+
"license": "Apache-2.0",
135+
"keywords": [
136+
"nasa"
137+
]
131138
}

src/plugins/autoflow/AutoflowTabularRowController.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,12 @@ define([], function () {
6868
this.updateRowData.bind(this)
6969
);
7070

71-
this.openmct.telemetry.request(this.domainObject, { size: 1 }).then(
71+
const options = {
72+
size: 1,
73+
strategy: 'latest',
74+
timeContext: this.openmct.time.getContextForView([])
75+
};
76+
this.openmct.telemetry.request(this.domainObject, options).then(
7277
function (history) {
7378
if (!this.initialized && history.length > 0) {
7479
this.updateRowData(history[history.length - 1]);

src/plugins/gauge/components/Gauge.vue

+5-1
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,11 @@ export default {
638638

639639
this.valueKey = this.metadata.valuesForHints(['range'])[0].source;
640640

641-
this.openmct.telemetry.request(domainObject, { strategy: 'latest' }).then((values) => {
641+
const options = {
642+
strategy: 'latest',
643+
timeContext: this.openmct.time.getContextForView([])
644+
};
645+
this.openmct.telemetry.request(domainObject, options).then((values) => {
642646
const length = values.length;
643647
this.updateValue(values[length - 1]);
644648
});

0 commit comments

Comments
 (0)