Skip to content

Commit

Permalink
Remove unneeded variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
justinkambic committed Jun 26, 2018
1 parent e0eb26b commit 94ceb41
Showing 1 changed file with 10 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,17 @@ uiModule.directive('monitoringLogstashPipelineViewer', ($injector) => {

scope.$watch('pipeline', (updatedPipeline) => {
pipelineState.update(updatedPipeline);
const pipelineViewer = (
<PipelineViewer
pipeline={
List.fromPipeline(
Pipeline.fromPipelineGraph(
pipelineState.config.graph
)

render(<PipelineViewer
pipeline={
List.fromPipeline(
Pipeline.fromPipelineGraph(
pipelineState.config.graph
)
}
timeseriesTooltipXValueFormatter={timeseriesTooltipXValueFormatter}
/>
);
render(pipelineViewer, $el[0]);
)
}
timeseriesTooltipXValueFormatter={timeseriesTooltipXValueFormatter}
/>, $el[0]);
});
}
};
Expand Down

0 comments on commit 94ceb41

Please sign in to comment.