Compare commits

...

1 Commits

Author SHA1 Message Date
DW Wheeler
5fcf6fb96a LAD Table Set allows drop of any object type, but shouldn't #2565 2020-01-16 15:03:22 -08:00

View File

@@ -51,6 +51,12 @@ define([
domainObject.composition = [];
}
});
openmct.composition.addPolicy((parent, child) => {
if (parent.type === 'LadTableSet') {
return !(openmct.composition.get(child) === undefined);
}
return true;
});
};
};
});