Skip to content

Commit 667d5bd

Browse files
Oops
1 parent 1651bda commit 667d5bd

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

components/albumExplanation.tsx

+6-3
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,12 @@ export const AlbumExplanation = ({ id }: { id: string }) => {
7070
</DialogTitle>
7171
<DialogDescription>All sources used for this explanation</DialogDescription>
7272
{source.map((item, index) => (
73-
<Button variant='secondary' key={index}>
74-
{item}
75-
</Button>
73+
<Link href={item} key={index} target="_blank" className="w-full">
74+
<Button variant='secondary' className="w-full">
75+
{item}
76+
</Button>
77+
</Link>
78+
7679
))}
7780
</DialogContent>
7881
</Dialog>

0 commit comments

Comments
 (0)