Skip to content

Commit

Permalink
Stacked plot interceptor rename (#5468)
Browse files Browse the repository at this point in the history
* Rename stacked plot interceptor and move to folder

Co-authored-by: Andrew Henry <akhenry@gmail.com>
  • Loading branch information
alizenguyen and akhenry committed Jul 11, 2022
1 parent 2943d2b commit 1c8784f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/plugins/plot/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import OverlayPlotCompositionPolicy from './overlayPlot/OverlayPlotCompositionPo
import StackedPlotCompositionPolicy from './stackedPlot/StackedPlotCompositionPolicy';
import PlotViewActions from "./actions/ViewActions";
import StackedPlotsInspectorViewProvider from "./inspector/StackedPlotsInspectorViewProvider";
import plotInterceptor from "./plotInterceptor";
import stackedPlotConfigurationInterceptor from "./stackedPlot/stackedPlotConfigurationInterceptor";

export default function () {
return function install(openmct) {
Expand Down Expand Up @@ -65,7 +65,7 @@ export default function () {
priority: 890
});

plotInterceptor(openmct);
stackedPlotConfigurationInterceptor(openmct);

openmct.objectViews.addProvider(new StackedPlotViewProvider(openmct));
openmct.objectViews.addProvider(new OverlayPlotViewProvider(openmct));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* at runtime from the About dialog for additional information.
*****************************************************************************/

export default function plotInterceptor(openmct) {
export default function stackedPlotConfigurationInterceptor(openmct) {

openmct.objects.addGetInterceptor({
appliesTo: (identifier, domainObject) => {
Expand Down

0 comments on commit 1c8784f

Please sign in to comment.