From 9c0d37dabdf847b746adc56361f51dcaf5683d8b Mon Sep 17 00:00:00 2001 From: Khalid Adil Date: Wed, 2 Aug 2023 18:36:25 -0500 Subject: [PATCH] Add logs --- src/plugins/plot/MctPlot.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugins/plot/MctPlot.vue b/src/plugins/plot/MctPlot.vue index 3123041cd7..2f1ecd228f 100644 --- a/src/plugins/plot/MctPlot.vue +++ b/src/plugins/plot/MctPlot.vue @@ -345,6 +345,7 @@ export default { this.abortController = new AbortController(); }, mounted() { + console.log('plot mounted'); this.yAxisIdVisibility = {}; this.offsetWidth = 0; @@ -398,9 +399,11 @@ export default { this.openmct.selection.on('change', this.updateSelection); this.yAxisListWithRange = [this.config.yAxis, ...this.config.additionalYAxes]; + console.log('got to nextTick'); this.$nextTick(() => { this.setTimeContext(); this.loaded = true; + console.log(this.loaded); }); }, beforeUnmount() {