Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/client/components/TicketDetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,7 @@ export default function Ticket() {
/>
)}
</div>
<span className="ml-1">{comment.text}</span>
<span className="ml-1 whitespace-pre-wrap">{comment.text}</span>
</li>
))}
</ul>
Expand Down
2 changes: 1 addition & 1 deletion apps/client/pages/portal/issue/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ export default function Ticket() {
</div>
</div>
<div className="text-sm text-gray-900 dark:text-white">
<span>{item.text}</span>
<span className="whitespace-pre-wrap">{item.text}</span>
</div>
</div>
</div>
Expand Down