Skip to content

Commit

Permalink
Fix the issue where Slack, Discord, WeChat for Enterprise, and Huawei…
Browse files Browse the repository at this point in the history
… SMN do not display notification types when choosing recipients for new notification policies. (#1052)
  • Loading branch information
guojing1983 authored and tomsun28 committed Mar 10, 2024
1 parent 3667c6a commit 7607062
Showing 1 changed file with 12 additions and 0 deletions.
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

0 comments on commit 7607062

Please sign in to comment.