mirror of
https://github.com/nasa/openmct.git
synced 2025-04-13 22:23:13 +00:00
modifying priorities to negate the use of HIGH + 1
This commit is contained in:
parent
56326ad6d1
commit
ebe7fe92c4
@ -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) {
|
||||
|
@ -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) {
|
||||
|
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user