mirror of
https://github.com/nasa/openmct.git
synced 2025-06-01 23:20:50 +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;
|
_destroy = destroy;
|
||||||
},
|
},
|
||||||
priority() {
|
priority() {
|
||||||
return openmct.editor.isEditing() ? openmct.priority.HIGH + 1 : openmct.priority.DEFAULT;
|
return openmct.editor.isEditing() ? openmct.priority.HIGH : openmct.priority.DEFAULT;
|
||||||
},
|
},
|
||||||
destroy() {
|
destroy() {
|
||||||
if (_destroy) {
|
if (_destroy) {
|
||||||
|
@ -41,7 +41,7 @@ export default function BarGraphInspectorViewProvider(openmct) {
|
|||||||
_destroy = destroy;
|
_destroy = destroy;
|
||||||
},
|
},
|
||||||
priority: function () {
|
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 () {
|
destroy: function () {
|
||||||
if (_destroy) {
|
if (_destroy) {
|
||||||
|
@ -66,7 +66,7 @@ export default function ElementsViewProvider(openmct) {
|
|||||||
return hasComposition;
|
return hasComposition;
|
||||||
},
|
},
|
||||||
priority: function () {
|
priority: function () {
|
||||||
return openmct.editor.isEditing() ? openmct.priority.HIGH : openmct.priority.LOW;
|
return openmct.editor.isEditing() ? openmct.priority.DEFAULT : openmct.priority.LOW;
|
||||||
},
|
},
|
||||||
destroy: function () {
|
destroy: function () {
|
||||||
if (_destroy) {
|
if (_destroy) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user