We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 895d93c commit a64e21dCopy full SHA for a64e21d
src/reports/reportEmail.js
@@ -90,8 +90,8 @@ export default class ReportEmail extends Report {
90
getEmails = (content) => {
91
const users = content.data
92
.map(item => {
93
- if (item.matchedRule && item.matchedRule.group){
94
- return item.matchedRule.group;
+ if (item.matchedRule){
+ return item.matchedRule.group || "default";
95
} else {
96
return false;
97
}
0 commit comments