Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the issue where Slack, Discord, WeChat for Enterprise, and Huawei SMN do not display notification types when choosing recipients for new notification policies. #1052

Merged
merged 6 commits into from
Jun 29, 2023
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,18 @@ export class AlertNoticeComponent implements OnInit {
case 7:
label = `${label}TelegramBot`;
break;
case 8:
label = `${label}SlackWebHook`;
break;
case 9:
label = `${label}Discord Bot`;
break;
case 10:
label = `${label}weChatApp`;
break;
case 11:
label = `${label}smn`;
break;
}
this.receiversOption.push({
value: item.id,
Expand Down