Skip to content

Commit

Permalink
Adding changes to replace <br> into \n
Browse files Browse the repository at this point in the history
  • Loading branch information
renemadsen committed Jan 13, 2025
1 parent 9c06b71 commit c6efa90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class TaskManagementCreateShowModalComponent
propertyId: workOrderCase.propertyId,
areaName: workOrderCase.areaName,
// assignedTo: workOrderCase.assignedSiteId,
descriptionTask: workOrderCase.description,
descriptionTask: workOrderCase.description.replace(/<br\s*\/?>/gi, '\n'),
priority: workOrderCase.priority,
caseStatusEnum: workOrderCase.caseStatusEnum,
},
Expand Down

0 comments on commit c6efa90

Please sign in to comment.