Add missing closing div tag in dashboard.blade.php

This commit is contained in:
Andras Bacsai 2024-01-29 08:30:00 +01:00
parent 70c28fceeb
commit 84c3f832ae

View File

@ -99,6 +99,8 @@
<div class="flex-1"></div> <div class="flex-1"></div>
</a> </a>
@endforeach @endforeach
</div>
<div class="flex items-center gap-2"> <div class="flex items-center gap-2">
<h3 class="py-4">Deployments </h3> <h3 class="py-4">Deployments </h3>
@if ($deployments_per_server->count() > 0) @if ($deployments_per_server->count() > 0)
@ -131,7 +133,6 @@
<div>No queued / in progress deployments</div> <div>No queued / in progress deployments</div>
@endforelse @endforelse
</div> </div>
</div>
<script> <script>
function gotoProject(uuid, environment = 'production') { function gotoProject(uuid, environment = 'production') {
window.location.href = '/project/' + uuid + '/' + environment; window.location.href = '/project/' + uuid + '/' + environment;