Skip to content

Commit

Permalink
Merge pull request #1575 from algins/bugfix/issue-1574/comment-column…
Browse files Browse the repository at this point in the history
…-width

fix: prevent long strings from breaking layout
  • Loading branch information
fey authored Jul 5, 2023
2 parents b4be423 + 1433f8a commit c2967ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/comment/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
@endif
</td>

<td>{!! strip_tags(MarkdownHelper::text($comment->content)) !!}</td>
<td class="text-break">{!! strip_tags(MarkdownHelper::text($comment->content)) !!}</td>

<td>
<a href="{{ $comment->present()->getLink() }}">
Expand Down

0 comments on commit c2967ff

Please sign in to comment.