From 15d2c0e436cf2e914bfd421873c758394c3ffc38 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 9 Apr 2024 08:46:06 +0200 Subject: [PATCH] Update font style for logs in deployment show view --- .../project/application/deployment/show.blade.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/resources/views/livewire/project/application/deployment/show.blade.php b/resources/views/livewire/project/application/deployment/show.blade.php index 1d3455605..0804bd535 100644 --- a/resources/views/livewire/project/application/deployment/show.blade.php +++ b/resources/views/livewire/project/application/deployment/show.blade.php @@ -81,15 +81,14 @@ class="fixed top-4 right-16" x-on:click="toggleScroll"> -
+
@if (decode_remote_command_output($application_deployment_queue)->count() > 0) @foreach (decode_remote_command_output($application_deployment_queue) as $line) -
$line['hidden'], - 'text-red-500 font-bold whitespace-pre-line' => $line['type'] == 'stderr', + $line['hidden'], + 'text-red-500 font-bold' => $line['type'] == 'stderr', ])>[{{ $line['timestamp'] }}] @if ($line['hidden']) -
COMMAND:
{{ $line['command'] }}

OUTPUT: +
COMMAND: {{ $line['command'] }}
OUTPUT : @endif @if (str($line['output'])->contains('http://') || str($line['output'])->contains('https://')) @php $line['output'] = preg_replace( @@ -101,7 +100,7 @@ class="fixed top-4 right-16" x-on:click="toggleScroll"> +
@endforeach @else No logs yet.