Skip to content

Commit

Permalink
fix: address more word wrap issues (#1399)
Browse files Browse the repository at this point in the history
  • Loading branch information
wescopeland authored Mar 2, 2023
1 parent 96d09c1 commit 332c060
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app_legacy/Helpers/render/content.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function RenderActivePlayersComponent(): void
<tr>
<td data-bind='html: playerHtml'></td>
<td data-bind='html: gameHtml'></td>
<td data-bind='text: richPresence' class="w-full break-all"></td>
<td data-bind='text: richPresence' class="w-full" style="word-break: normal; overflow-wrap: anywhere;"></td>
</tr>
<!-- /ko -->
Expand Down
2 changes: 1 addition & 1 deletion public/viewtopic.php
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
echo "</div>";
echo "</div>";

echo "<div class='comment'>";
echo "<div class='comment' style='word-break: normal; overflow-wrap: anywhere;'>";
echo Shortcode::render($nextCommentPayload);
echo "</div>";

Expand Down

0 comments on commit 332c060

Please sign in to comment.