fix(#6413): Inspector View tab priority (#6414)

* fix: inspector view tab priority

- fixes issue where inspector view priorities were not being passed to the view registry

* chore: run lint:fix

- eslint sez no danglin' commas! EVER!

* fix: update more viewProviders

---------

Co-authored-by: Shefali Joshi <simplyrender@gmail.com>
This commit is contained in:
Jesse Mazzella
2023-03-15 14:47:40 -07:00
committed by GitHub
parent 006fa0bcc7
commit 22cc28d733
17 changed files with 53 additions and 52 deletions

View File

@@ -57,14 +57,14 @@ export default function ElementsViewProvider(openmct) {
return hasComposition && isEditing;
},
priority: function () {
return openmct.priority.DEFAULT;
},
destroy: function () {
component.$destroy();
component = undefined;
}
};
},
priority: function () {
return this.openmct.priority.DEFAULT;
}
};
}