mirror of
https://github.com/nasa/openmct.git
synced 2025-06-14 21:28:12 +00:00
Build columns from union of telemetry value metadata. (#2075)
* Build columns from union of telemetry value metadata. Do not manually clean up scope. Fixes #2027. Fixes #1884. Fixes #1817. * Fixed tests that are failing on circle-ci * Inlined getMetadataValues function
This commit is contained in:
committed by
Pete Richards
parent
a3e78bbf91
commit
45a152df86
@ -115,8 +115,10 @@ define([
|
||||
UTCTimeFormat.prototype.format = function (value) {
|
||||
if (arguments.length > 1) {
|
||||
return getScaledFormat(value);
|
||||
} else {
|
||||
} else if (value !== undefined) {
|
||||
return moment.utc(value).format(DATE_FORMAT) + "Z";
|
||||
} else {
|
||||
return value;
|
||||
}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user