mirror of
https://github.com/nasa/openmct.git
synced 2025-06-15 05:38:12 +00:00
* 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:
@ -56,6 +56,10 @@ class AlphanumericFormatView {
|
||||
return this.component.$refs.alphanumericFormat.getViewContext();
|
||||
}
|
||||
|
||||
priority() {
|
||||
return 1;
|
||||
}
|
||||
|
||||
destroy() {
|
||||
this.component.$destroy();
|
||||
this.component = undefined;
|
||||
@ -89,9 +93,6 @@ export default function AlphanumericFormatViewProvider(openmct, options) {
|
||||
},
|
||||
view: function (domainObject, objectPath) {
|
||||
return new AlphanumericFormatView(openmct, domainObject, objectPath);
|
||||
},
|
||||
priority: function () {
|
||||
return 1;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user