Skip to content

Commit 0deb2bf

Browse files
committed
removed save from interceptors and kept missing object intercepter as is
1 parent 5ee9b66 commit 0deb2bf

File tree

5 files changed

+1
-9
lines changed

5 files changed

+1
-9
lines changed

src/plugins/conditionWidget/conditionWidgetStylesInterceptor.js

-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ export default function conditionWidgetStylesInterceptor(openmct) {
3232

3333
domainObject.configuration.objectStyles = {};
3434

35-
openmct.objects.save(domainObject);
36-
3735
return domainObject;
3836
}
3937
};

src/plugins/interceptors/missingObjectInterceptor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ export default function MissingObjectInterceptor(openmct) {
3939

4040
return object;
4141
},
42-
priority: openmct.priority.HIGH + 1 // this should be the first interceptor to run
42+
priority: openmct.priority.HIGH
4343
});
4444
}

src/plugins/plot/overlayPlot/overlayPlotStylesInterceptor.js

-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ export default function overlayPlotStylesInterceptor(openmct) {
3535

3636
domainObject.configuration.objectStyles = {};
3737

38-
openmct.objects.save(domainObject);
39-
4038
return domainObject;
4139
}
4240
};

src/plugins/plot/stackedPlot/stackedPlotConfigurationInterceptor.js

-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ export default function stackedPlotConfigurationInterceptor(openmct) {
4141
domainObject.configuration.objectStyles = {};
4242
}
4343

44-
openmct.objects.save(domainObject);
45-
4644
return domainObject;
4745
}
4846
});

src/plugins/telemetryTable/telemetryTableStylesInterceptor.js

-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ export default function telemetryTableStylesInterceptor(openmct) {
3232
invoke: (identifier, domainObject) => {
3333
domainObject.configuration.objectStyles = {};
3434

35-
openmct.objects.save(domainObject);
36-
3735
return domainObject;
3836
}
3937
};

0 commit comments

Comments
 (0)