Filter open issue by summary

You can makean account-specific calcuted field to group issues by “Issue summary Developer”. Please see the documentation for more details: Account specific calculated fields

The settings should look like the one in the picture below.

The JavaScript code is the same as mentioned: Filter open issue by summary - #2 by roberts.cacus

var result;
if (issue.fields.summary && issue.fields.summary.match(/.*developer.*/)) {
  result = true;
} else {
  result = false;
}
return result;

Best,
Zane / support@eazyBI.com