Skip to content

Commit 1628869

Browse files
committed
fix word break on error section
1 parent 8665a08 commit 1628869

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gui/src/components/mainInput/Lump/sections/errors/ErrorSection.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export function ErrorSection() {
2828
) : (
2929
<ExclamationTriangleIcon className="mr-2 mt-1 h-3.5 w-3.5" />
3030
)}
31-
<p className="m-0 whitespace-pre-wrap text-xs">{error.message}</p>
31+
<p className="m-0 whitespace-pre-wrap text-wrap" style={{wordBreak: 'break-word'}}>{error.message}</p>
3232
</li>
3333
))}
3434
</ul>

0 commit comments

Comments
 (0)