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>
|
2023-07-04 10:38:22 +00:00
|
|
|
@if ($is_debug_enabled)
|
|
|
|
<x-forms.button wire:click.prevent="show_debug">Hide Debug Logs</x-forms.button>
|
|
|
|
@else
|
|
|
|
<x-forms.button wire:click.prevent="show_debug">Show Debug Logs</x-forms.button>
|
|
|
|
@endif
|
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
|
2023-06-30 13:57:40 +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
|
2024-02-05 13:40:54 +00:00
|
|
|
|
2023-05-31 10:38:36 +00:00
|
|
|
</div>
|