fix(team): prevent danger zone source loading error (#11305)
This commit is contained in:
parent
9c5020c93b
commit
8e73149a06
2 changed files with 4 additions and 2 deletions
|
|
@ -75,7 +75,7 @@ class="rounded-lg border border-red-300 bg-red-50 p-4 ring-1 ring-inset ring-red
|
|||
'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]">
|
||||
|
|
|
|||
|
|
@ -28,7 +28,9 @@
|
|||
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')
|
||||
|
|
|
|||
Loading…
Reference in a new issue