diff --git a/Common/Server/Services/AlertOwnerTeamService.ts b/Common/Server/Services/AlertOwnerTeamService.ts index f688e94db4..11c83eee67 100644 --- a/Common/Server/Services/AlertOwnerTeamService.ts +++ b/Common/Server/Services/AlertOwnerTeamService.ts @@ -70,7 +70,7 @@ export class Service extends DatabaseService { projectId: projectId, alertFeedEventType: AlertFeedEventType.OwnerTeamRemoved, displayColor: Red500, - feedInfoInMarkdown: `Removed **Team ${team.name}** from the alert as the owner.`, + feedInfoInMarkdown: `Removed team **${team.name}** from the alert as the owner.`, userId: deleteByUserId || undefined, }); } @@ -109,7 +109,7 @@ export class Service extends DatabaseService { projectId: projectId, alertFeedEventType: AlertFeedEventType.OwnerTeamAdded, displayColor: Gray500, - feedInfoInMarkdown: `Added **Team ${team.name}** to the alert as the owner.`, + feedInfoInMarkdown: `Added team **${team.name}** to the alert as the owner.`, userId: createdByUserId || undefined, }); } diff --git a/Common/Server/Services/IncidentOwnerTeamService.ts b/Common/Server/Services/IncidentOwnerTeamService.ts index c643aa8c27..12b4b23fac 100644 --- a/Common/Server/Services/IncidentOwnerTeamService.ts +++ b/Common/Server/Services/IncidentOwnerTeamService.ts @@ -70,7 +70,7 @@ export class Service extends DatabaseService { projectId: projectId, incidentFeedEventType: IncidentFeedEventType.OwnerTeamRemoved, displayColor: Red500, - feedInfoInMarkdown: `👨🏻‍👩🏻‍👦🏻 Removed **Team ${team.name}** from the incident as the owner.`, + feedInfoInMarkdown: `👨🏻‍👩🏻‍👦🏻 Removed team **${team.name}** from the incident as the owner.`, userId: deleteByUserId || undefined, workspaceNotification: { sendWorkspaceNotification: true, @@ -113,7 +113,7 @@ export class Service extends DatabaseService { projectId: projectId, incidentFeedEventType: IncidentFeedEventType.OwnerTeamAdded, displayColor: Gray500, - feedInfoInMarkdown: `👨🏻‍👩🏻‍👦🏻 Added **Team ${team.name}** to the incident as the owner.`, + feedInfoInMarkdown: `👨🏻‍👩🏻‍👦🏻 Added team **${team.name}** to the incident as the owner.`, userId: createdByUserId || undefined, workspaceNotification: { sendWorkspaceNotification: true, diff --git a/Common/Server/Services/ScheduledMaintenanceOwnerTeamService.ts b/Common/Server/Services/ScheduledMaintenanceOwnerTeamService.ts index baecab80a0..e9a1166e29 100644 --- a/Common/Server/Services/ScheduledMaintenanceOwnerTeamService.ts +++ b/Common/Server/Services/ScheduledMaintenanceOwnerTeamService.ts @@ -73,7 +73,7 @@ export class Service extends DatabaseService { scheduledMaintenanceFeedEventType: ScheduledMaintenanceFeedEventType.OwnerTeamRemoved, displayColor: Red500, - feedInfoInMarkdown: `Removed **Team ${team.name}** from the scheduled maintenance as the owner.`, + feedInfoInMarkdown: `Removed team **${team.name}** from the scheduled maintenance as the owner.`, userId: deleteByUserId || undefined, }, ); @@ -116,7 +116,7 @@ export class Service extends DatabaseService { scheduledMaintenanceFeedEventType: ScheduledMaintenanceFeedEventType.OwnerTeamAdded, displayColor: Gray500, - feedInfoInMarkdown: `Added **Team ${team.name}** to the scheduled maintenance as the owner.`, + feedInfoInMarkdown: `Added team **${team.name}** to the scheduled maintenance as the owner.`, userId: createdByUserId || undefined, }, );