Feature/eliminate name from timeline position (#245)

* Eliminate name from timeline position: Get the name from the symbolProfileService instead

* Update changelog
This commit is contained in:
Thomas
2021-08-01 20:43:12 +02:00
committed by GitHub
parent 56c332c59a
commit 4bd41ffa41
8 changed files with 40 additions and 68 deletions

View File

@@ -258,7 +258,12 @@
<tr
*matRowDef="let row; columns: displayedColumns"
mat-row
(click)="onOpenPositionDialog({ symbol: row.symbol, title: '' })"
(click)="
onOpenPositionDialog({
symbol: row.symbol,
title: row.SymbolProfile?.name
})
"
></tr>
</table>