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

13 lines
559 B
PHP
Raw Normal View History

2023-06-08 09:23:25 +02:00
<div class="flex items-center gap-2 pb-4">
<h2>Deployment Log</h2>
2023-07-04 12:38:22 +02: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
2023-06-30 15:57:40 +02:00
@if (data_get($application_deployment_queue, 'status') === 'in_progress' ||
data_get($application_deployment_queue, 'status') === 'queued')
<x-forms.button wire:click.prevent="cancel">Cancel Deployment</x-forms.button>
2023-05-31 14:42:37 +02:00
@endif
2023-05-31 12:38:36 +02:00
</div>