TenantAtlas/apps/platform/patch.diff
ahmido 3aeb0d04b8 Auto: 266-tenant-dashboard-productization-v1 → platform-dev (#322)
Automated PR created by Copilot per user request. Branch pushed: 266-tenant-dashboard-productization-v1

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #322
2026-05-03 14:03:46 +00:00

17 lines
501 B
Diff

--- app/Filament/Pages/TenantDashboard.php
+++ app/Filament/Pages/TenantDashboard.php
@@ -54,8 +54,10 @@
public function getTitle(): string
{
- return __('localization.dashboard.overview.page_title');
+ $tenant = Filament::getTenant();
+ return $tenant ? $tenant->name : 'YPTW2';
}
public function getSubheading(): ?string
{
- return __('localization.dashboard.overview.page_subheading');
+ return 'Tenant-Governance-Übersicht';
}