Skip to content

Commit

Permalink
feat(board): link issue assignee to GitHub profile
Browse files Browse the repository at this point in the history
  • Loading branch information
nikku committed Oct 24, 2021
1 parent 7c84c49 commit 72cf233
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/board/src/CollaboratorLinks.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,15 @@
{/each}

{#each assignees as assignee}
<span
<a
class="assignee"
title="{ assignee.login } assigned"
on:click={ handleSelection('involves', assignee.login) }
href={ assignee.html_url }
target="_blank"
rel="noopener noreferrer"
>
<img src="{ assignee.avatar_url }&s=40" alt="{ assignee.login } avatar" />
<div class="icon-shadow"></div>
</span>
</a>
{/each}

0 comments on commit 72cf233

Please sign in to comment.