From 54331131378b8bb9c4e4c1569b5572a4d5550707 Mon Sep 17 00:00:00 2001 From: Shefali Date: Mon, 6 Jan 2025 11:35:42 -0800 Subject: [PATCH] Remove unnecessary watch on cursor guides and grid lines --- src/plugins/plot/PlotView.vue | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/plugins/plot/PlotView.vue b/src/plugins/plot/PlotView.vue index 34eac983314..48395b4dbf4 100644 --- a/src/plugins/plot/PlotView.vue +++ b/src/plugins/plot/PlotView.vue @@ -162,14 +162,6 @@ export default { } } }, - watch: { - gridLines(newGridLines) { - this.gridLines = newGridLines; - }, - cursorGuide(newCursorGuide) { - this.cursorGuide = newCursorGuide; - } - }, created() { eventHelpers.extend(this); this.imageExporter = new ImageExporter(this.openmct);