mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
whitespace-nowrap
This commit is contained in:
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user