whitespace-nowrap

This commit is contained in:
HolgerHatGarKeineNode
2023-02-27 18:39:54 +01:00
parent ce972e66c6
commit 384740daeb

View File

@@ -1,23 +1,23 @@
<div class="flex flex-col space-y-1"> <div class="flex flex-col space-y-1">
@if($row->course_events_count > 0) @if($row->course_events_count > 0)
<div> <div>
<x-button xs amber wire:click="courseSearch({{ $row->id }})"> <x-button class="whitespace-nowrap" xs amber wire:click="courseSearch({{ $row->id }})">
{{ __('Show dates') }} [{{ $row->course_events_count }}] {{ __('Show dates') }} [{{ $row->course_events_count }}]
</x-button> </x-button>
</div> </div>
@else @else
<div> <div>
<x-button xs outline wire:click="courseSearch({{ $row->id }})"> <x-button class="whitespace-nowrap" xs outline wire:click="courseSearch({{ $row->id }})">
{{ __('Show dates') }} {{ __('Show dates') }}
</x-button> </x-button>
</div> </div>
@endif @endif
@can('update', $row) @can('update', $row)
<div> <div>
<x-button amber xs :href="route('course.form.course', ['course' => $row])"> <x-button class="whitespace-nowrap" amber xs :href="route('course.form.course', ['course' => $row])">
<i class="fa fa-thin fa-edit"></i> <i class="fa fa-thin fa-edit"></i>
{{ __('Edit') }} {{ __('Edit') }}
</x-buttonamber> </x-button>
</div> </div>
@endcan @endcan
</div> </div>