From 419ca871a81cab824771492687df4d26b91aae0d Mon Sep 17 00:00:00 2001 From: Gabriel De Los Rios Date: Wed, 24 Dec 2025 12:10:06 -0300 Subject: [PATCH] fix: update contacts count on search, remove table for no contacts --- src/app/components/contact-list/contact-list.html | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/app/components/contact-list/contact-list.html b/src/app/components/contact-list/contact-list.html index 21196b2..3776def 100644 --- a/src/app/components/contact-list/contact-list.html +++ b/src/app/components/contact-list/contact-list.html @@ -2,10 +2,13 @@

{{languageManager.strings.contacts|upperfirst}}

+ @let contactsCount = (this.contacts$|async|contactsFilter:filter)?.length ?? 0; - + @if(contactsCount !== 0) { + + }
\ No newline at end of file