diff --git a/resources/views/livewire/project/shared/get-logs.blade.php b/resources/views/livewire/project/shared/get-logs.blade.php index 9fcd52cd7..138c8e564 100644 --- a/resources/views/livewire/project/shared/get-logs.blade.php +++ b/resources/views/livewire/project/shared/get-logs.blade.php @@ -391,7 +391,7 @@ class="flex overflow-y-auto overflow-x-hidden flex-col px-4 py-2 w-full min-w-0 class="text-gray-500 dark:text-gray-400 py-2"> No matches found. - @foreach ($displayLines as $line) + @foreach ($displayLines as $index => $line) @php // Parse timestamp from log line (ISO 8601 format: 2025-12-04T11:48:39.136764033Z) $timestamp = ''; @@ -411,8 +411,10 @@ class="text-gray-500 dark:text-gray-400 py-2"> // Format: 2025-Dec-04 09:44:58.198879 $timestamp = "{$year}-{$monthName}-{$day} {$time}.{$microseconds}"; } + // Use timestamp for stable key (unique per log line) + $lineKey = $timestamp ?: 'line-' . $index; @endphp -
+
@if ($timestamp && $showTimeStamps) {{ $timestamp }} @endif