TenantAtlas/apps/platform/patch.diff
Ahmed Darrazi beebbaefbe
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 5m58s
chore: commit all local changes
2026-05-03 16:00:44 +02: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';
}