feat(deployments): add log copying functionality to clipboard in dev

This commit is contained in:
Andras Bacsai
2025-10-02 18:34:39 +02:00
parent aadde3a83e
commit d63802e03d
2 changed files with 25 additions and 0 deletions

View File

@@ -5,6 +5,9 @@
@else
<x-forms.button wire:click.prevent="show_debug">Show Debug Logs</x-forms.button>
@endif
@if (isDev())
<x-forms.button x-on:click="$wire.copyLogsToClipboard().then(text => navigator.clipboard.writeText(text))">Copy Logs</x-forms.button>
@endif
@if (data_get($application_deployment_queue, 'status') === 'queued')
<x-forms.button wire:click.prevent="force_start">Force Start</x-forms.button>
@endif