Skip to content

Commit

Permalink
Refactor previews.blade.php to improve code readability
Browse files Browse the repository at this point in the history
  • Loading branch information
andrasbacsai committed Mar 19, 2024
1 parent 289480c commit 0aacad6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ class="text-warning">{{ $application->destination->server->name }}</span>.</div>
@isset($rate_limit_remaining)
<div class="pt-1 ">Requests remaining till rate limited by Git: {{ $rate_limit_remaining }}</div>
@endisset
@if (count($pull_requests) > 0)
<div wire:loading.remove wire:target='load_prs'>
<div wire:loading.remove wire:target='load_prs'>
@if ($pull_requests->count() > 0)
<div class="overflow-x-auto table-md">
<table>
<thead>
Expand Down Expand Up @@ -50,8 +50,8 @@ class="text-warning">{{ $application->destination->server->name }}</span>.</div>
</tbody>
</table>
</div>
</div>
@endif
@endif
</div>
</div>
@if ($application->previews->count() > 0)
<div class="pb-4">Previews</div>
Expand Down

0 comments on commit 0aacad6

Please sign in to comment.