From 47a6fcfc39a1089339a755e95ff4a3390787b532 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 3 Jun 2026 08:40:06 -0700 Subject: [PATCH] Fix (beta): correctly apply i18n in suggestions dropdown (#12905) --- .../suggestions-dropdown.component.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src-ui/src/app/components/common/suggestions-dropdown/suggestions-dropdown.component.html b/src-ui/src/app/components/common/suggestions-dropdown/suggestions-dropdown.component.html index 035177536..7e1a29666 100644 --- a/src-ui/src/app/components/common/suggestions-dropdown/suggestions-dropdown.component.html +++ b/src-ui/src/app/components/common/suggestions-dropdown/suggestions-dropdown.component.html @@ -25,21 +25,21 @@ } @if (suggestions?.suggested_tags.length > 0) { - Tags + Tags @for (tag of suggestions.suggested_tags; track tag) { - + } } @if (suggestions?.suggested_document_types.length > 0) { -
Document Types
+
Document Types
@for (type of suggestions.suggested_document_types; track type) { - + } } @if (suggestions?.suggested_correspondents.length > 0) { -
Correspondents
+
Correspondents
@for (correspondent of suggestions.suggested_correspondents; track correspondent) { - + } }