|
|
@ -61,7 +61,9 @@ export class SymbolProfileService { |
|
|
|
}) |
|
|
|
} |
|
|
|
}) |
|
|
|
.then((symbolProfiles) => this.getSymbols(symbolProfiles)); |
|
|
|
.then((symbolProfiles) => { |
|
|
|
return this.enhanceSymbolProfiles(symbolProfiles); |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
public async getSymbolProfilesByIds( |
|
|
@ -83,7 +85,9 @@ export class SymbolProfileService { |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
.then((symbolProfiles) => this.getSymbols(symbolProfiles)); |
|
|
|
.then((symbolProfiles) => { |
|
|
|
return this.enhanceSymbolProfiles(symbolProfiles); |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
public updateSymbolProfile({ |
|
|
@ -119,7 +123,7 @@ export class SymbolProfileService { |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
private getSymbols( |
|
|
|
private enhanceSymbolProfiles( |
|
|
|
symbolProfiles: (SymbolProfile & { |
|
|
|
_count: { Order: number }; |
|
|
|
Order?: { |
|
|
|