From 9310466c7ab957e4e44b818c8e11db1c22c1806b Mon Sep 17 00:00:00 2001
From: Kenrick Tandrian <60643640+KenTandrian@users.noreply.github.com>
Date: Sat, 14 Mar 2026 17:11:23 +0700
Subject: [PATCH] Task/improve type safety of holdings table component (#6556)
* Improve type safety
---
.../holdings-table.component.html | 4 ++--
.../holdings-table.component.ts | 21 +++++++++----------
2 files changed, 12 insertions(+), 13 deletions(-)
diff --git a/libs/ui/src/lib/holdings-table/holdings-table.component.html b/libs/ui/src/lib/holdings-table/holdings-table.component.html
index 250eff578..3bb387ae4 100644
--- a/libs/ui/src/lib/holdings-table/holdings-table.component.html
+++ b/libs/ui/src/lib/holdings-table/holdings-table.component.html
@@ -193,7 +193,7 @@
-
+
@if (isLoading()) {
}
-@if (dataSource.data.length > pageSize && !isLoading()) {
+@if (dataSource.data.length > pageSize() && !isLoading()) {