fixed log color when dark theme is enabled

This commit is contained in:
coolcoala
2025-07-26 06:53:00 +03:00
parent 8186a6841a
commit 87473bdf92

View File

@@ -69,7 +69,7 @@ const LogItem = ({ value, searchState }: Props) => {
{renderHighlightText(value.type)} {renderHighlightText(value.type)}
</span> </span>
</div> </div>
<div className="text-gray-800 dark:text-gray-200 break-all whitespace-pre-wrap"> <div className="text-foreground break-all whitespace-pre-wrap">
{renderHighlightText(value.payload)} {renderHighlightText(value.payload)}
</div> </div>
</div> </div>