From 3d4d8e8769927de75f5b85a8eacfb7d05fe30cd9 Mon Sep 17 00:00:00 2001 From: Ivo Valchev Date: Wed, 1 Sep 2021 12:34:17 +0200 Subject: [PATCH] fix code style --- .../pages/portfolio/allocations/allocations-page.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts b/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts index f79c217e8..5f523c5df 100644 --- a/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts +++ b/apps/client/src/app/pages/portfolio/allocations/allocations-page.component.ts @@ -147,7 +147,7 @@ export class AllocationsPageComponent implements OnDestroy, OnInit { }; this.positionsArray.push(position); - if(this.symbols[symbol] === undefined) { + if (this.symbols[symbol] === undefined) { this.symbols[symbol] = { name: symbol, value: position.value }; } else { this.symbols[symbol].value += position.value;