Add missing trailing comma

This commit is contained in:
Frederico Pavao 2020-09-21 22:06:24 +00:00
parent 3d1f870c91
commit 4893ee0c9d

View file

@ -32,7 +32,7 @@ export class ElectricityComponent implements OnDestroy {
forkJoin([
this.electricityService.getListData(),
this.electricityService.getChartData()
this.electricityService.getChartData(),
])
.pipe(takeWhile(() => this.alive))
.subscribe(([listData, chartData]: [Electricity[], ElectricityChart[]]) => {