Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion lib/algora_web/components/bounties.ex
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ defmodule AlgoraWeb.Components.Bounties do
<div class="relative -mx-2 -mt-2 overflow-auto scrollbar-thin">
<ul class="divide-y divide-border">
<%= for bounty <- @bounties do %>
<.link href={Bounty.url(bounty)} class="block whitespace-nowrap hover:bg-muted/50">
<.link
href={Bounty.url(bounty)}
target="_blank"
rel="noopener noreferrer"
class="block whitespace-nowrap hover:bg-muted/50"
>
<li class="flex items-center py-2 px-3">
<div class="flex-shrink-0 mr-3">
<.avatar class="h-8 w-8">
Expand Down