From 555ba8bb19111f42cdd6100453bcee92393a9a0d Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 7 Dec 2025 19:07:28 -0800 Subject: [PATCH] Chore: remove use of logs ngFor --- src-ui/src/app/components/admin/logs/logs.component.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/components/admin/logs/logs.component.html b/src-ui/src/app/components/admin/logs/logs.component.html index b3df5ff89..17ceb1e89 100644 --- a/src-ui/src/app/components/admin/logs/logs.component.html +++ b/src-ui/src/app/components/admin/logs/logs.component.html @@ -48,7 +48,9 @@ Loading... } @else { -

{{log.message}}

+ @for (log of logs; track log) { +

{{log.message}}

+ } }