Skip to content

Commit

Permalink
Ticket detail page, text is not wrapped - this fixes it
Browse files Browse the repository at this point in the history
pre tag does not support text wrapping natively, adding a style to it to allow text wrapping
  • Loading branch information
AnishReddyRavula committed Oct 6, 2023
1 parent 7af7e1b commit e3ef647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion djangoRT/templates/djangoRT/ticketDetail.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h4>
<small>{{history.Description}}</small>
</h4>

<pre>{{ history.Content }}</pre>
<pre style="white-space: pre-wrap; word-break: normal; ">{{ history.Content }}</pre>

{% if history.Attachments %}
<h5>Attachments:</h5>
Expand Down

0 comments on commit e3ef647

Please sign in to comment.