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 97fd357 commit 184aab3Copy full SHA for 184aab3
resources/views/forum/overview.blade.php
@@ -19,14 +19,14 @@
19
@foreach ($threads as $thread)
20
<div class="thread-card">
21
<a href="{{ route('thread', $thread->slug()) }}">
22
- <h4 class="flex justify-between text-xl font-bold text-gray-900">
+ <h4 class="flex justify-between text-xl font-bold text-gray-900 break-all">
23
{{ $thread->subject() }}
24
<span class="text-base font-normal">
25
<x-heroicon-s-chat class="inline text-gray-500 h-5 w-5 mr-1"/>
26
{{ count($thread->replies()) }}
27
</span>
28
</h4>
29
- <p class="text-gray-600">{!! $thread->excerpt() !!}</p>
+ <p class="text-gray-600 break-all">{!! $thread->excerpt() !!}</p>
30
</a>
31
32
<div class="flex flex-col justify-between md:flex-row md:items-center text-sm pt-5">
0 commit comments