Merge branch 'next' into rename-github-app

This commit is contained in:
🏔️ Peak
2024-12-03 15:35:23 +01:00
committed by GitHub
14 changed files with 30 additions and 35 deletions

View File

@@ -1,6 +1,6 @@
<x-forms.select wire:model.live="selectedTeamId" label="Current Team">
<option value="default" disabled selected>Switch team</option>
@foreach (auth()->user()->teams as $team)
<option value="{{ $team->id }}">{{ $team->name }}</option>
<option value="{{ $team->id }}">{{ $team->name }}</option>
@endforeach
</x-forms.select>