Merge pull request #6659 from ShadowArcanist/shadow/change-deployment-logs-color-lightmode

fix(ui): non-error deployment debug log lines appear red in light mode
This commit is contained in:
Andras Bacsai 2025-09-22 09:52:26 +02:00 committed by GitHub
commit 26f22243b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -113,7 +113,7 @@ class="flex flex-col-reverse w-full p-2 px-4 mt-4 overflow-y-auto bg-white dark:
])>
<span x-show="showTimestamps" class="shrink-0 text-gray-500">{{ $line['timestamp'] }}</span>
<span @class([
'text-coollabs dark:text-warning' => $line['hidden'],
'text-success dark:text-warning' => $line['hidden'],
'text-red-500' => $line['stderr'],
'font-bold' => isset($line['command']) && $line['command'],
'whitespace-pre-wrap',