|
|
@ -494,7 +494,7 @@ export class AdminService { |
|
|
|
) { |
|
|
|
const [assetProfile] = await this.symbolProfileService.getSymbolProfiles([ |
|
|
|
{ |
|
|
|
dataSource: newDataSource as DataSource, |
|
|
|
dataSource: DataSource[newDataSource.toString()], |
|
|
|
symbol: newSymbol as string |
|
|
|
} |
|
|
|
]); |
|
|
@ -514,7 +514,7 @@ export class AdminService { |
|
|
|
symbol |
|
|
|
}, |
|
|
|
{ |
|
|
|
dataSource: newDataSource as DataSource, |
|
|
|
dataSource: DataSource[newDataSource.toString()], |
|
|
|
symbol: newSymbol as string |
|
|
|
} |
|
|
|
), |
|
|
@ -524,7 +524,7 @@ export class AdminService { |
|
|
|
symbol |
|
|
|
}, |
|
|
|
{ |
|
|
|
dataSource: newDataSource as DataSource, |
|
|
|
dataSource: DataSource[newDataSource.toString()], |
|
|
|
symbol: newSymbol as string |
|
|
|
} |
|
|
|
) |
|
|
@ -532,7 +532,7 @@ export class AdminService { |
|
|
|
|
|
|
|
return this.symbolProfileService.getSymbolProfiles([ |
|
|
|
{ |
|
|
|
dataSource: newDataSource as DataSource, |
|
|
|
dataSource: DataSource[newDataSource.toString()], |
|
|
|
symbol: newSymbol as string |
|
|
|
} |
|
|
|
])?.[0]; |
|
|
|