Compare commits

...

2 Commits

Author SHA1 Message Date
masoodafar-web bed35935ad Merge branch 'kub-stage' into production
Build and Deploy to Production / build-and-deploy (push) Failing after 17m17s
2026-07-15 22:02:31 +03:30
masoodafar-web 2339ca99b4 fix: correct Persian labels in OrganizationChart component
Build and Deploy to Kubernetes / build-and-deploy (push) Has been cancelled
- 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.
2026-07-15 21:51:38 +03:30
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.Web"> <Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net9.0</TargetFramework> <TargetFramework>net9.0</TargetFramework>
@@ -61,11 +61,11 @@
<span class="stat-value">@_statistics.TotalMembers</span> <span class="stat-value">@_statistics.TotalMembers</span>
</div> </div>
<div class="stat-item"> <div class="stat-item">
<span class="stat-label">پای چپ:</span> <span class="stat-label">سازمان چپ:</span>
<span class="stat-value left">@_statistics.LeftLegCount</span> <span class="stat-value left">@_statistics.LeftLegCount</span>
</div> </div>
<div class="stat-item"> <div class="stat-item">
<span class="stat-label">پای راست:</span> <span class="stat-label">سازمان راست:</span>
<span class="stat-value right">@_statistics.RightLegCount</span> <span class="stat-value right">@_statistics.RightLegCount</span>
</div> </div>
<div class="stat-item"> <div class="stat-item">
@@ -1,4 +1,4 @@
using FrontOffice.Main.Utilities; using FrontOffice.Main.Utilities;
using Microsoft.AspNetCore.Components; using Microsoft.AspNetCore.Components;
using Microsoft.JSInterop; using Microsoft.JSInterop;