|
|
@ -264,7 +264,7 @@ export class AdminMarketDataComponent
|
|
|
|
this.adminService
|
|
|
|
this.adminService
|
|
|
|
.gatherProfileData()
|
|
|
|
.gatherProfileData()
|
|
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
|
|
.subscribe(() => {});
|
|
|
|
.subscribe();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public onGatherProfileDataBySymbol({
|
|
|
|
public onGatherProfileDataBySymbol({
|
|
|
@ -274,14 +274,14 @@ export class AdminMarketDataComponent
|
|
|
|
this.adminService
|
|
|
|
this.adminService
|
|
|
|
.gatherProfileDataBySymbol({ dataSource, symbol })
|
|
|
|
.gatherProfileDataBySymbol({ dataSource, symbol })
|
|
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
|
|
.subscribe(() => {});
|
|
|
|
.subscribe();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public onGatherSymbol({ dataSource, symbol }: AssetProfileIdentifier) {
|
|
|
|
public onGatherSymbol({ dataSource, symbol }: AssetProfileIdentifier) {
|
|
|
|
this.adminService
|
|
|
|
this.adminService
|
|
|
|
.gatherSymbol({ dataSource, symbol })
|
|
|
|
.gatherSymbol({ dataSource, symbol })
|
|
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
|
|
.subscribe(() => {});
|
|
|
|
.subscribe();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public onOpenAssetProfileDialog({
|
|
|
|
public onOpenAssetProfileDialog({
|
|
|
|