fix(team): prevent danger zone source loading error (#11305)

This commit is contained in:
Andras Bacsai
2026-08-16 08:29:21 +02:00
committed by GitHub
parent 9c5020c93b
commit 8e73149a06
2 changed files with 4 additions and 2 deletions
@@ -75,7 +75,7 @@
'Projects' => currentTeam()->projects,
'Servers' => currentTeam()->servers,
'Private keys' => currentTeam()->privateKeys,
'Sources' => currentTeam()->sources,
'Sources' => currentTeam()->sources(),
] as $label => $resources)
@if ($resources->isNotEmpty())
<div class="rounded-lg border border-neutral-200 p-3 dark:border-white/[0.08]">
+3 -1
View File
@@ -28,7 +28,9 @@ it('uses shared sidebar navigation for every team settings page', function () {
expect(file_get_contents(resource_path('views/livewire/team/danger-zone.blade.php')))
->toContain('Delete team')
->toContain('status="Permanent"')
->toContain('border-red-300');
->toContain('border-red-300')
->toContain("'Sources' => currentTeam()->sources()")
->not->toContain("'Sources' => currentTeam()->sources,");
expect(file_get_contents(resource_path('views/livewire/switch-team.blade.php')))
->toContain('New team')
->toContain('team-switcher-create-expanded')