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