mirror of
https://github.com/nasa/openmct.git
synced 2025-06-17 06:38:17 +00:00
Use series.getDatum when available
This commit is contained in:
@ -45,6 +45,9 @@ define([
|
||||
};
|
||||
|
||||
function createDatum(domainObject, metadata, legacySeries, i) {
|
||||
if (legacySeries.getDatum) {
|
||||
return legacySeries.getDatum(i);
|
||||
}
|
||||
var datum = {};
|
||||
|
||||
metadata.domains.reduce(function (d, domain) {
|
||||
|
Reference in New Issue
Block a user