We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cfbff6 commit 27b1712Copy full SHA for 27b1712
2 files changed
src/components/paper.js
@@ -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={link}
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'>
src/pages/papers-citing-parcels.js
@@ -130,7 +130,7 @@ const PapersCitingParcels = () => {
130
published_info={paper.published_info}
131
title={paper.title}
132
authors={paper.authors}
133
- doi={paper.doi}
+ link={paper.doi}
134
abstract={paper.abstract}
135
number={array.length - index}
136
/>
0 commit comments