We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c406afd commit 7c07555Copy full SHA for 7c07555
resources/views/livewire/project/shared/get-logs.blade.php
@@ -435,7 +435,7 @@ class="text-gray-500 dark:text-gray-400 py-2">
435
// Parse timestamp from log line (ISO 8601 format: 2025-12-04T11:48:39.136764033Z)
436
$timestamp = '';
437
$logContent = $line;
438
- if (preg_match('/^(\d{4})-(\d{2})-(\d{2})T(\d{2}:\d{2}:\d{2})(?:\.(\d+))?Z?\s*(.*)$/', $line, $matches)) {
+ if (preg_match('/^(\d{4})-(\d{2})-(\d{2})T(\d{2}:\d{2}:\d{2})(?:\.(\d+))?Z?\s(.*)$/', $line, $matches)) {
439
$year = $matches[1];
440
$month = $matches[2];
441
$day = $matches[3];
0 commit comments