mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-17 19:23:27 +02:00
Add word-break on forum thread & reply
When someone inserts long word, is will break into multiple lines
This commit is contained in:
@@ -54,7 +54,7 @@
|
||||
</tr>
|
||||
{% set i = 0 %}
|
||||
{% for thread in threads %}
|
||||
<tr bgcolor="{{ getStyle(i) }}"><td>{{ thread.name }}</td><td>{{ thread.post|raw }}</td></tr>
|
||||
<tr bgcolor="{{ getStyle(i) }}"><td>{{ thread.name }}</td><td style="word-break: break-all">{{ thread.post|raw }}</td></tr>
|
||||
{% set i = i + 1 %}
|
||||
{% endfor %}
|
||||
</table>
|
||||
</table>
|
||||
|
Reference in New Issue
Block a user