Skip to content

Commit

Permalink
For telemetry that cannot have it's own configuration, ensure that it…
Browse files Browse the repository at this point in the history
… is correct initialized by the parent.
  • Loading branch information
shefalijoshi committed Jul 5, 2024
1 parent 0215a5b commit 46b7268
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/plugins/plot/stackedPlot/StackedPlotItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,11 @@ export default {
'grid-lines',
'plot-y-tick-width'
],
mounted() {
beforeMount() {
// We must do this before mounted to use any series configuration options set at the stacked plot level
this.updateView();
},
mounted() {
this.isEditing = this.openmct.editor.isEditing();
this.openmct.editor.on('isEditing', this.setEditState);
this.setupClockChangedEvent((domainObject) => {
Expand Down

0 comments on commit 46b7268

Please sign in to comment.