Can't display issuetype icon with custom image

Hi @gabrieltakeuchi ,
I have the same issue. While waiting jira-team fix it.
This is my way:
Get avatarId from issueType and map it
This domain is current domain of your app. Ex: https://demo.atlassian.net

  const mapIconUrl = (avatarId) => {
    const iconUrl = `${domain}/rest/api/3/universal_avatar/view/type/issuetype/avatar/${avatarId}?size=small&format=png`;
    return iconUrl;
  };

In other project type, maybe avatarId is not found, just use issueType.iconUrl, don’t need map id.

1 Like