coolify/resources/views/livewire/project/application/deployment-navbar.blade.php
Andras Bacsai 8ae56587d5
feat(ui): Shadow UI redesign, domain management, and DNS autoconfigure (#11119)
Co-authored-by: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com>
2026-08-03 23:11:54 +02:00

15 lines
820 B
PHP

<div @class([
'logs-viewer-deployment-actions',
'hidden' => ! in_array(data_get($application_deployment_queue, 'status'), ['queued', 'in_progress'], true),
])>
@if (
data_get($application_deployment_queue, 'status') === 'queued'
|| data_get($application_deployment_queue, 'status') === 'in_progress')
<div class="flex flex-wrap items-center justify-end gap-2">
@if (data_get($application_deployment_queue, 'status') === 'queued')
<x-forms.button class="logs-viewer-deployment-btn" wire:click.prevent="force_start">Force start</x-forms.button>
@endif
<x-forms.button isError class="logs-viewer-deployment-btn logs-viewer-cancel-btn" wire:click.prevent="cancel">Cancel deployment</x-forms.button>
</div>
@endif
</div>