From 7cf45ccce663b893def282c5a066a51fdcae295e Mon Sep 17 00:00:00 2001 From: Michael Rogers Date: Mon, 30 Oct 2023 17:42:25 -0500 Subject: [PATCH] Time context get clock --- src/plugins/timeConductor/ConductorInputsRealtime.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/timeConductor/ConductorInputsRealtime.vue b/src/plugins/timeConductor/ConductorInputsRealtime.vue index 7f637ad3b0..0d42782eda 100644 --- a/src/plugins/timeConductor/ConductorInputsRealtime.vue +++ b/src/plugins/timeConductor/ConductorInputsRealtime.vue @@ -210,7 +210,7 @@ export default { this.formattedBounds.end = this.timeFormatter.format(bounds.end); }, updateCurrentValue() { - const currentValue = this.openmct.time.getClock()?.currentValue(); + const currentValue = this.timeContext.getClock().currentValue(); if (currentValue !== undefined) { this.setCurrentValue(currentValue);