@if (data_get($application_deployment_queue, 'status') === 'in_progress')
Deployment is
@@ -12,25 +12,44 @@
class="text-warning">{{ Str::headline(data_get($application_deployment_queue, 'status')) }}.
@endif
-
-
- @if (decode_remote_command_output($application_deployment_queue)->count() > 0)
- @foreach (decode_remote_command_output($application_deployment_queue) as $line)
- $line['type'] == 'stdout',
- 'text-error' => $line['type'] == 'stderr',
- 'text-warning' => $line['hidden'],
- ])>[{{ $line['timestamp'] }}] @if ($line['hidden'])
-
COMMAND:
{{ $line['command'] }}
OUTPUT:
- @endif{{ $line['output'] }}@if ($line['hidden'])
- @endif
-
- @endforeach
- @else
- No logs yet.
- @endif
-
+
+
+
+
+
+ @if (decode_remote_command_output($application_deployment_queue)->count() > 0)
+ @foreach (decode_remote_command_output($application_deployment_queue) as $line)
+ $line['type'] == 'stdout',
+ 'text-error' => $line['type'] == 'stderr',
+ 'text-warning' => $line['hidden'],
+ ])>[{{ $line['timestamp'] }}] @if ($line['hidden'])
+
COMMAND:
{{ $line['command'] }}
OUTPUT:
+ @endif{{ $line['output'] }}@if ($line['hidden'])
+ @endif
+
+ @endforeach
+ @else
+ No logs yet.
+ @endif
+
+
diff --git a/resources/views/livewire/project/shared/get-logs.blade.php b/resources/views/livewire/project/shared/get-logs.blade.php
index 3514d4cdb..ee1b6b07e 100644
--- a/resources/views/livewire/project/shared/get-logs.blade.php
+++ b/resources/views/livewire/project/shared/get-logs.blade.php
@@ -16,7 +16,7 @@
+ class="relative flex flex-col-reverse w-full p-4 pt-6 overflow-y-auto text-xs text-white border border-solid rounded scrollbar border-coolgray-300" :class="fullscreen ? '' : 'max-h-[32rem]'">