From efb5deda4375ee0d9e315ddfb3393bcb54a1a74b Mon Sep 17 00:00:00 2001 From: Miguel Medeiros Date: Fri, 21 May 2021 12:03:18 -0300 Subject: [PATCH] Fix missing whitespace linting. (#534) --- .../transactions-list/transactions-list.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/components/transactions-list/transactions-list.component.ts b/frontend/src/app/components/transactions-list/transactions-list.component.ts index ed536f106..bb54e77c3 100644 --- a/frontend/src/app/components/transactions-list/transactions-list.component.ts +++ b/frontend/src/app/components/transactions-list/transactions-list.component.ts @@ -76,9 +76,9 @@ export class TransactionsListComponent implements OnInit, OnChanges { onScroll() { const scrollHeight = document.body.scrollHeight; const scrollTop = document.documentElement.scrollTop; - if(scrollHeight > 0){ + if (scrollHeight > 0){ const percentageScrolled = scrollTop * 100 / scrollHeight; - if(percentageScrolled > 90){ + if (percentageScrolled > 90){ this.loadMore.emit(); } }