Skip to content

Commit

Permalink
Fix a typo in transform-trace-data.js (#332)
Browse files Browse the repository at this point in the history
Signed-off-by: Bhavin Gandhi <bhavin7392@gmail.com>
  • Loading branch information
bhavin192 authored and tiffon committed Feb 22, 2019
1 parent dd4f809 commit c07c41d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jaeger-ui/src/model/transform-trace-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type SpanWithProcess = SpanData & { process: Process };
* NOTE: Mutates `data` - Transform the HTTP response data into the form the app
* generally requires.
*/
export default function transfromTraceData(data: TraceData & { spans: SpanWithProcess[] }): ?Trace {
export default function transformTraceData(data: TraceData & { spans: SpanWithProcess[] }): ?Trace {
let { traceID } = data;
if (!traceID) {
return null;
Expand Down

0 comments on commit c07c41d

Please sign in to comment.