coolify/resources/views/livewire/project/application/deployment-navbar.blade.php

12 lines
520 B
PHP
Raw Normal View History

2023-06-08 07:23:25 +00:00
<div class="flex items-center gap-2 pb-4">
<h2>Deployment Log</h2>
@if (data_get($application_deployment_queue, 'status') === 'queued')
<x-forms.button wire:click.prevent="force_start">Force Start</x-forms.button>
@endif
@if (
data_get($application_deployment_queue, 'status') === 'in_progress' ||
data_get($application_deployment_queue, 'status') === 'queued'
)
<x-forms.button isError wire:click.prevent="cancel">Cancel</x-forms.button>
2023-05-31 12:42:37 +00:00
@endif
</div>