Skip to content

Commit 698b23f

Browse files
committed
Removed unused variable
1 parent 8afb8d0 commit 698b23f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/angular-fusioncharts/src/fusioncharts.component.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ import { FusionChartsConstructor } from './fusioncharts.constructor';
1919
import FusionChartsEvent from '../interfaces/FusionChartsEvent';
2020
import FusionChartInstance from '../interfaces/FusionChartInstance';
2121
import EventsList from '../events/events';
22-
let count = 0;
2322
@Component({
2423
selector: 'fusioncharts',
2524
template: `
@@ -347,7 +346,7 @@ class FusionChartsComponent
347346
// Edge case handling for DataTable
348347
if (prop === 'data') {
349348
if (obj[prop]._dataStore) {
350-
clonedObj[prop] = `-${count}`;
349+
clonedObj[prop] = `-`;
351350
} else {
352351
clonedObj[prop] = this.cloneDataSource(obj[prop]);
353352
}

0 commit comments

Comments
 (0)