We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cfbff6 commit b738a5aCopy full SHA for b738a5a
1 file changed
src/components/paper.js
@@ -13,7 +13,7 @@ export const Paper = ({
13
title,
14
published_info,
15
authors,
16
- link,
+ doi,
17
abstract,
18
number,
19
}) => {
@@ -36,7 +36,15 @@ export const Paper = ({
36
<Box as='i' textAlign='left'>
37
{published_info}
38
</Box>
39
- <Link textAlign='left' href={link} color='blue.500' isExternal>
+ <Link
40
+ textAlign='left'
41
+ href={doi}
42
+ color='blue.500'
43
+ isExternal
44
+ onClick={(e) => {
45
+ e.stopPropagation()
46
+ }}
47
+ >
48
View paper
49
</Link>
50
<Box as='i' color='gray.500' textAlign='left'>
0 commit comments