|
|
@ -190,14 +190,14 @@ export class AssetProfileDialog implements OnDestroy, OnInit { |
|
|
|
this.adminService |
|
|
|
.gatherProfileDataBySymbol({ dataSource, symbol }) |
|
|
|
.pipe(takeUntil(this.unsubscribeSubject)) |
|
|
|
.subscribe(() => {}); |
|
|
|
.subscribe(); |
|
|
|
} |
|
|
|
|
|
|
|
public onGatherSymbol({ dataSource, symbol }: AssetProfileIdentifier) { |
|
|
|
this.adminService |
|
|
|
.gatherSymbol({ dataSource, symbol }) |
|
|
|
.pipe(takeUntil(this.unsubscribeSubject)) |
|
|
|
.subscribe(() => {}); |
|
|
|
.subscribe(); |
|
|
|
} |
|
|
|
|
|
|
|
public onGatherSymbolMissingOnly({ |
|
|
@ -207,7 +207,7 @@ export class AssetProfileDialog implements OnDestroy, OnInit { |
|
|
|
this.adminService |
|
|
|
.gatherSymbolMissingOnly({ dataSource, symbol }) |
|
|
|
.pipe(takeUntil(this.unsubscribeSubject)) |
|
|
|
.subscribe(() => {}); |
|
|
|
.subscribe(); |
|
|
|
} |
|
|
|
|
|
|
|
public onImportHistoricalData() { |
|
|
|