From d0953601dd045ce36e15e9c834ad68f4146b1973 Mon Sep 17 00:00:00 2001 From: Fahri Gedik <53567152+fahrigedik@users.noreply.github.com> Date: Thu, 8 Jan 2026 17:45:16 +0300 Subject: [PATCH] Add async pipe to abpAsyncLocalization in routes Appends the async pipe to the abpAsyncLocalization usage in routes.component.html to ensure localized route names are properly resolved from observables. --- .../src/lib/components/routes/routes.component.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/npm/ng-packs/packages/theme-basic/src/lib/components/routes/routes.component.html b/npm/ng-packs/packages/theme-basic/src/lib/components/routes/routes.component.html index a7061ff83a..9ec8489209 100644 --- a/npm/ng-packs/packages/theme-basic/src/lib/components/routes/routes.component.html +++ b/npm/ng-packs/packages/theme-basic/src/lib/components/routes/routes.component.html @@ -10,7 +10,7 @@ @if (route.iconClass) { } - {{ route.name | abpAsyncLocalization }} + {{ route.name | abpAsyncLocalization | async}} @@ -27,7 +27,7 @@ @if (route.iconClass) { } - {{ route.name | abpAsyncLocalization }} + {{ route.name | abpAsyncLocalization | async }}