[Time Conductor] Use domain formats in scrolling list

This commit is contained in:
Victor Woeltjen 2015-10-27 12:37:53 -07:00
parent 6b805183b0
commit e5ebbdaf7f

View File

@ -54,7 +54,8 @@ define(
DomainColumn.prototype.getValue = function (domainObject, datum) { DomainColumn.prototype.getValue = function (domainObject, datum) {
return { return {
text: this.telemetryFormatter.formatDomainValue( text: this.telemetryFormatter.formatDomainValue(
datum[this.domainMetadata.key] datum[this.domainMetadata.key],
this.domainMetadata.format
) )
}; };
}; };