NTP-24878 | Text changes in Slack modal and info message. (#473)

This commit is contained in:
Amitesh Vijaykumar Magar
2025-01-30 14:16:06 +05:30
committed by GitHub
parent aa7fdc7f9a
commit 0387a054de
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ func GenerateModalRequest(
blockSet = append(blockSet, reportingTeamBlock)
responderTeamsOptions := createOptionBlockObjectsForTeamsV2(responderTeams)
responderTeamText := slack.NewTextBlockObject(slack.PlainTextType, "Responder Team", false, false)
responderTeamText := slack.NewTextBlockObject(slack.PlainTextType, "Business/Function Impacted", false, false)
responderTeamPlaceholder := slack.NewTextBlockObject(slack.PlainTextType, "Select responder team", false, false)
responderTeamOption := slack.NewOptionsSelectBlockElement(slack.OptTypeStatic, responderTeamPlaceholder, "responderTeamId", responderTeamsOptions...)
if defaultResponderTeam != nil {

View File

@@ -274,7 +274,7 @@ func (service *reminderServiceImpl) populateSeverityIncidentsListMessage(
}
incidentMessage := fmt.Sprintf(
"<#%s> * | Open since:* %-20s *Responder Team:* `%s` *Reporting team:* `%s` \n",
"<#%s> * | Open since:* %-20s *Business/Function Impacted:* `%s` *Reporting team:* `%s` \n",
incident.SlackChannel, fmt.Sprintf("`%d day(s) %d hour(s)`", days, hours),
responderTeam, reporterTeam,
)