From 932862e96215f4fed217860b0f8ac833efa25407 Mon Sep 17 00:00:00 2001 From: Bircck <55695195+Bircck@users.noreply.github.com> Date: Thu, 10 Sep 2026 15:45:55 +0200 Subject: [PATCH] fix(website): use columns consistently in UI text Fixes Azure DevOps bug 125339. Preserve internal identifiers and API names. --- Website/components/datamodelview/Attributes.tsx | 10 +++++----- Website/components/datamodelview/Keys.tsx | 2 +- Website/components/datamodelview/List.tsx | 2 +- Website/components/datamodelview/Section.tsx | 2 +- Website/components/datamodelview/TimeSlicedSearch.tsx | 6 +++--- Website/components/homeview/HomeView.tsx | 2 +- .../insightsview/overview/InsightsOverviewView.tsx | 2 +- Website/hooks/useAttributeSelection.ts | 6 +++--- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Website/components/datamodelview/Attributes.tsx b/Website/components/datamodelview/Attributes.tsx index 3aa8a862..cb40ef37 100644 --- a/Website/components/datamodelview/Attributes.tsx +++ b/Website/components/datamodelview/Attributes.tsx @@ -187,7 +187,7 @@ export const Attributes = ({ entity, search = "", onVisibleCountChange }: IAttri setSearchQuery(e.target.value)} onKeyDown={(e) => { @@ -291,10 +291,10 @@ export const Attributes = ({ entity, search = "", onVisibleCountChange }: IAttri {searchQuery && typeFilter !== "all" - ? `No ${typeFilter === "all" ? "" : typeFilter.replace("Attribute", "")} attributes found matching "${searchQuery}"` + ? `No ${typeFilter === "all" ? "" : typeFilter.replace("Attribute", "")} columns found matching "${searchQuery}"` : searchQuery - ? `No attributes found matching "${searchQuery}"` - : `No ${typeFilter === "all" ? "" : typeFilter.replace("Attribute", "")} attributes available` + ? `No columns found matching "${searchQuery}"` + : `No ${typeFilter === "all" ? "" : typeFilter.replace("Attribute", "")} columns available` }