mirror of
https://github.com/nasa/openmct.git
synced 2025-06-18 23:28:14 +00:00
1.7.7 merge into master (#4155)
* Merge 1.7.7 sprint branch into master Co-authored-by: Nikhil <nikhil.k.mandlik@nasa.gov> Co-authored-by: Khalid Adil <khalidadil29@gmail.com>
This commit is contained in:
@ -321,7 +321,7 @@ export default {
|
||||
if (item) {
|
||||
const type = this.openmct.types.get(item.type);
|
||||
if (type && type.definition) {
|
||||
creatable = (type.definition.creatable === true);
|
||||
creatable = (type.definition.creatable !== undefined && (type.definition.creatable === 'true' || type.definition.creatable === true));
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user