modifying priorities to negate the use of HIGH + 1

This commit is contained in:
Jamie V 2025-04-04 13:30:39 -07:00
parent 56326ad6d1
commit ebe7fe92c4
3 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ export default function LADTableConfigurationViewProvider(openmct) {
_destroy = destroy;
},
priority() {
return openmct.editor.isEditing() ? openmct.priority.HIGH + 1 : openmct.priority.DEFAULT;
return openmct.editor.isEditing() ? openmct.priority.HIGH : openmct.priority.DEFAULT;
},
destroy() {
if (_destroy) {

View File

@ -41,7 +41,7 @@ export default function BarGraphInspectorViewProvider(openmct) {
_destroy = destroy;
},
priority: function () {
return openmct.editor.isEditing() ? openmct.priority.HIGH + 1 : openmct.priority.DEFAULT;
return openmct.editor.isEditing() ? openmct.priority.HIGH : openmct.priority.DEFAULT;
},
destroy: function () {
if (_destroy) {

View File

@ -66,7 +66,7 @@ export default function ElementsViewProvider(openmct) {
return hasComposition;
},
priority: function () {
return openmct.editor.isEditing() ? openmct.priority.HIGH : openmct.priority.LOW;
return openmct.editor.isEditing() ? openmct.priority.DEFAULT : openmct.priority.LOW;
},
destroy: function () {
if (_destroy) {