Skip to content

Commit

Permalink
fix: slack message action point new line (#1460)
Browse files Browse the repository at this point in the history
  • Loading branch information
GoncaloCanteiro authored May 3, 2023
1 parent a8218b7 commit c0ddff8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class UpdateBoardPhaseUseCase implements UseCase<BoardPhaseDto, void> {

//Extracts the action points to a string
cards.map((card) => {
actionPoints += ` \u2022 ${card.text.replace(/\n{2,}/g, '\n\t')} \n`;
actionPoints += ` \u2022 ${card.text.replace(/\n{1,}/g, '\n\t')} \n`;
});

return (
Expand Down

0 comments on commit c0ddff8

Please sign in to comment.