From bc2cba5aa434b232821b16c66df3deb980382561 Mon Sep 17 00:00:00 2001 From: mwvdev Date: Mon, 29 Oct 2018 14:44:03 +0100 Subject: [PATCH] Removed unused imports --- webui/src/app/charts/bar-chart/bar-chart.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/src/app/charts/bar-chart/bar-chart.component.ts b/webui/src/app/charts/bar-chart/bar-chart.component.ts index cc77ddfec..fb695fefb 100644 --- a/webui/src/app/charts/bar-chart/bar-chart.component.ts +++ b/webui/src/app/charts/bar-chart/bar-chart.component.ts @@ -1,5 +1,5 @@ import { Component, ElementRef, Input, OnChanges, OnInit, SimpleChanges } from '@angular/core'; -import { axisBottom, axisLeft, easeLinear, max, min, scaleBand, scaleLinear, select } from 'd3'; +import { axisBottom, axisLeft, max, scaleBand, scaleLinear, select } from 'd3'; import { format } from 'd3-format'; import * as _ from 'lodash'; import { WindowService } from '../../services/window.service';