[WEB-3155]fix: email notification comments overflow #7110

This commit is contained in:
Vamsi Krishna 2025-05-23 15:04:50 +05:30 committed by GitHub
parent 4460529b37
commit b376e5300a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -209,7 +209,7 @@
{% for actor_comment in comment.actor_comments.new_value %}
<tr>
<td>
<div style=" padding: 6px 10px; margin-left: 10px; background-color: white; font-size: 0.8rem; color: #525252; margin-top: 5px; border-radius: 4px; display: flex; align-items: center; " >
<div style=" padding: 6px 10px; margin-left: 10px; background-color: white; font-size: 0.8rem; color: #525252; margin-top: 5px; border-radius: 4px; overflow-x: scroll; max-width: 430px;" >
<p> {{ actor_comment|safe }} </p>
</div>
</td>