From 2339ca99b45e4b763385f3ca40e40805387199aa Mon Sep 17 00:00:00 2001 From: masoodafar-web Date: Wed, 15 Jul 2026 21:51:38 +0330 Subject: [PATCH] fix: correct Persian labels in OrganizationChart component MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated the labels for left and right legs in the OrganizationChart component from "پای چپ" and "پای راست" to "سازمان چپ" and "سازمان راست" for improved clarity and accuracy. - Removed unnecessary whitespace in the FrontOffice.Main.csproj file. These changes enhance the user interface by ensuring the terminology used in the OrganizationChart is more appropriate for the context. --- src/FrontOffice.Main/FrontOffice.Main.csproj | 2 +- .../Pages/Profile/Components/OrganizationChart.razor | 4 ++-- .../Pages/Profile/Components/OrganizationChart.razor.cs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/FrontOffice.Main/FrontOffice.Main.csproj b/src/FrontOffice.Main/FrontOffice.Main.csproj index 0fe8530..f7089c0 100644 --- a/src/FrontOffice.Main/FrontOffice.Main.csproj +++ b/src/FrontOffice.Main/FrontOffice.Main.csproj @@ -1,4 +1,4 @@ - + net9.0 diff --git a/src/FrontOffice.Main/Pages/Profile/Components/OrganizationChart.razor b/src/FrontOffice.Main/Pages/Profile/Components/OrganizationChart.razor index 8b563fa..445b046 100644 --- a/src/FrontOffice.Main/Pages/Profile/Components/OrganizationChart.razor +++ b/src/FrontOffice.Main/Pages/Profile/Components/OrganizationChart.razor @@ -61,11 +61,11 @@ @_statistics.TotalMembers
- پای چپ: + سازمان چپ: @_statistics.LeftLegCount
- پای راست: + سازمان راست: @_statistics.RightLegCount
diff --git a/src/FrontOffice.Main/Pages/Profile/Components/OrganizationChart.razor.cs b/src/FrontOffice.Main/Pages/Profile/Components/OrganizationChart.razor.cs index 2603f3f..4f6ac05 100644 --- a/src/FrontOffice.Main/Pages/Profile/Components/OrganizationChart.razor.cs +++ b/src/FrontOffice.Main/Pages/Profile/Components/OrganizationChart.razor.cs @@ -1,4 +1,4 @@ -using FrontOffice.Main.Utilities; +using FrontOffice.Main.Utilities; using Microsoft.AspNetCore.Components; using Microsoft.JSInterop;