diff --git a/api/src/Sozsoft.Platform.DbMigrator/Seeds/LanguagesData.json b/api/src/Sozsoft.Platform.DbMigrator/Seeds/LanguagesData.json
index 7a39b15..0c1b25d 100644
--- a/api/src/Sozsoft.Platform.DbMigrator/Seeds/LanguagesData.json
+++ b/api/src/Sozsoft.Platform.DbMigrator/Seeds/LanguagesData.json
@@ -16733,8 +16733,8 @@
{
"resourceName": "Platform",
"key": "ListForms.Wizard.MenuInfo",
- "en": "Menu Information",
- "tr": "Menü Bilgileri"
+ "en": "Menu",
+ "tr": "Menü"
},
{
"resourceName": "Platform",
@@ -16751,14 +16751,14 @@
{
"resourceName": "Platform",
"key": "ListForms.Wizard.ListFormSettings",
- "en": "List Form Settings",
- "tr": "Liste Formu Ayarları"
+ "en": "Settings",
+ "tr": "Ayarlar"
},
{
"resourceName": "Platform",
"key": "ListForms.Wizard.ListFormFields",
- "en": "List Form Fields",
- "tr": "Liste Formu Alanları"
+ "en": "Fields",
+ "tr": "Alanlar"
},
{
"resourceName": "Platform",
diff --git a/api/src/Sozsoft.Platform.DbMigrator/Seeds/ListFormSeeder_Administration.cs b/api/src/Sozsoft.Platform.DbMigrator/Seeds/ListFormSeeder_Administration.cs
index 2296068..e839a47 100644
--- a/api/src/Sozsoft.Platform.DbMigrator/Seeds/ListFormSeeder_Administration.cs
+++ b/api/src/Sozsoft.Platform.DbMigrator/Seeds/ListFormSeeder_Administration.cs
@@ -840,10 +840,10 @@ public class ListFormSeeder_Administration : IDataSeedContributor, ITransientDep
ColSpan = 4,
SqlQuery = @"
SELECT
- 'Aktif' AS ""Title"",
+ N'Aktif' AS ""Title"",
COUNT(""Id"") AS ""Value"",
'blue' AS ""Color"",
- 'Aktif Kullanıcılar' AS ""SubTitle"",
+ N'Aktif Kullanıcılar' AS ""SubTitle"",
'FaUserCheck' AS ""Icon""
FROM ""AbpUsers""
WHERE ""IsActive"" = 'true'
@@ -851,10 +851,10 @@ public class ListFormSeeder_Administration : IDataSeedContributor, ITransientDep
UNION ALL
SELECT
- 'Pasif' AS ""Title"",
+ N'Pasif' AS ""Title"",
COUNT(""Id"") AS ""Value"",
'green' AS ""Color"",
- 'Pasif Kullanıcılar' AS ""SubTitle"",
+ N'Pasif Kullanıcılar' AS ""SubTitle"",
'FaUserSlash' AS ""Icon""
FROM ""AbpUsers""
WHERE ""IsActive"" = 'false'
@@ -862,10 +862,10 @@ public class ListFormSeeder_Administration : IDataSeedContributor, ITransientDep
UNION ALL
SELECT
- 'Doğrulama' AS ""Title"",
+ N'Doğrulama' AS ""Title"",
COUNT(""Id"") AS ""Value"",
'purple' AS ""Color"",
- 'Yönetici Doğrulaması bekleyenler' AS ""SubTitle"",
+ N'Doğrulama bekleyenler' AS ""SubTitle"",
'FaUserClock' AS ""Icon""
FROM ""AbpUsers""
WHERE ""IsVerified"" = 'false';
diff --git a/ui/src/components/ui/Widget/Widget.tsx b/ui/src/components/ui/Widget/Widget.tsx
index d9d18ef..9db29fb 100644
--- a/ui/src/components/ui/Widget/Widget.tsx
+++ b/ui/src/components/ui/Widget/Widget.tsx
@@ -77,7 +77,7 @@ export default function Widget({
>
-
{title}
+
{title}
{value}
{subTitle}
diff --git a/ui/src/components/ui/Widget/WidgetGroup.tsx b/ui/src/components/ui/Widget/WidgetGroup.tsx
index 9dccfb2..dabba55 100644
--- a/ui/src/components/ui/Widget/WidgetGroup.tsx
+++ b/ui/src/components/ui/Widget/WidgetGroup.tsx
@@ -8,13 +8,25 @@ export default function WidgetGroup({ widgetGroups }: { widgetGroups: WidgetGrou
return (
+ {/* Mobile responsive override: below sm breakpoint each widget spans 6/12 (2 per row) */}
+
+
{widgetGroups.map((group, gIdx) => (
{group.items.map((item: WidgetEditDto, order: number) => (
-
+
)
}
+
diff --git a/ui/src/views/admin/hr/OrgChart.tsx b/ui/src/views/admin/hr/OrgChart.tsx
index 44a13cf..08286e6 100644
--- a/ui/src/views/admin/hr/OrgChart.tsx
+++ b/ui/src/views/admin/hr/OrgChart.tsx
@@ -452,7 +452,7 @@ function OrgChartNode({
data-card=""
data-depth={depth}
data-users-visible={showUsers ? 'true' : 'false'}
- className={`relative bg-white border ${borderColor} rounded-xl shadow-sm w-52 hover:shadow-md transition-shadow`}
+ className={`relative bg-white border ${borderColor} rounded-xl shadow-sm w-36 sm:w-44 md:w-52 hover:shadow-md transition-shadow`}
style={{ cursor: dragging ? 'grabbing' : 'grab' }}
>
{/* Header bar */}
@@ -522,7 +522,7 @@ function OrgChartNode({
{/* Children */}
{hasChildren && !collapsed && (
-
+
{node.children.map((child, idx) => {
const childPosition = positions[child.id] ?? { x: 0, y: 0 }
@@ -695,7 +695,7 @@ function OrgChartTree({
}
return (
-
+