mirror of
https://github.com/nasa/openmct.git
synced 2025-06-19 15:43:48 +00:00
* Add Gauge plugin #4896, add edit mode
This commit is contained in:
@ -32,7 +32,9 @@ export default function GaugeViewProvider(openmct) {
|
|||||||
return domainObject.type === 'gauge';
|
return domainObject.type === 'gauge';
|
||||||
},
|
},
|
||||||
canEdit: function (domainObject) {
|
canEdit: function (domainObject) {
|
||||||
return false;
|
if (domainObject.type === 'gauge') {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
view: function (domainObject) {
|
view: function (domainObject) {
|
||||||
let component;
|
let component;
|
||||||
|
Reference in New Issue
Block a user