mirror of
https://github.com/nasa/openmct.git
synced 2025-03-21 11:35:59 +00:00
Changes for tabs visibility and priority
- Added `objectStyles: {}` to initialize functions for multiple objects: - Condition Widget - Gauge - LAD Table
This commit is contained in:
parent
3527e4e4a1
commit
087fbd3326
@ -39,6 +39,9 @@ export default function plugin() {
|
||||
cssClass: 'icon-tabular-lad',
|
||||
initialize(domainObject) {
|
||||
domainObject.composition = [];
|
||||
domainObject.configuration = {
|
||||
objectStyles: {}
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -34,7 +34,9 @@ export default function plugin() {
|
||||
creatable: true,
|
||||
cssClass: 'icon-condition-widget',
|
||||
initialize(domainObject) {
|
||||
domainObject.configuration = {};
|
||||
domainObject.configuration = {
|
||||
objectStyles: {}
|
||||
};
|
||||
domainObject.label = 'Condition Widget';
|
||||
domainObject.conditionalLabel = '';
|
||||
domainObject.url = '';
|
||||
|
@ -59,7 +59,8 @@ export default function () {
|
||||
max: 100,
|
||||
min: 0,
|
||||
precision: 2
|
||||
}
|
||||
},
|
||||
objectStyles: {}
|
||||
};
|
||||
},
|
||||
form: [
|
||||
|
Loading…
x
Reference in New Issue
Block a user