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:
Andrew Henry
2018-06-21 10:50:43 -07:00
committed by Pete Richards
parent a3e78bbf91
commit 45a152df86
4 changed files with 22 additions and 17 deletions

View File

@ -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;
}
};