We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f700f commit 05d80f8Copy full SHA for 05d80f8
config.js
@@ -283,7 +283,9 @@
283
*/
284
allowRealtime: true,
285
/**
286
- * allowLAD: whether or not to allow latest data relative time conductor.
+ * allowLAD: whether or not to allow latest data relative time conductor.
287
+ *
288
+ * Note: allowRealtime must be true to use this option
289
290
allowLAD: true,
291
src/time/plugin.js
@@ -104,7 +104,7 @@ export default function TimePlugin(options) {
104
}
105
});
106
107
- if (options.allowLAD) {
+ if (options.allowRealtime && options.allowLAD) {
108
var ladClock = new LADClock(key);
109
install.ladClocks[key] = ladClock;
110
openmct.time.addClock(ladClock);
0 commit comments