mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
Add missing trailing comma
This commit is contained in:
parent
3d1f870c91
commit
4893ee0c9d
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ export class ElectricityComponent implements OnDestroy {
|
||||||
|
|
||||||
forkJoin([
|
forkJoin([
|
||||||
this.electricityService.getListData(),
|
this.electricityService.getListData(),
|
||||||
this.electricityService.getChartData()
|
this.electricityService.getChartData(),
|
||||||
])
|
])
|
||||||
.pipe(takeWhile(() => this.alive))
|
.pipe(takeWhile(() => this.alive))
|
||||||
.subscribe(([listData, chartData]: [Electricity[], ElectricityChart[]]) => {
|
.subscribe(([listData, chartData]: [Electricity[], ElectricityChart[]]) => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue