Skip to content

Commit

Permalink
fix: update google scholar links
Browse files Browse the repository at this point in the history
Link to google scholar queries should reflect that citations are no
longer included.
  • Loading branch information
ltalirz committed Jan 28, 2023
1 parent feeee22 commit fa8389a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"dependencies": {
"@nivo/line": "^0.80.0",
"mui-datatables": "^3.8.5",
"prettier": "^2.8.3",
"prettier": "^2.5.1",
"react-dom": "<18.0.0",
"react-markdown": "^8.0.0",
"react-router-dom": "^5.3.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Columns.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ function getColumns(data, year) {
"https://scholar.google.com/scholar?q=" +
encodeURIComponent(row["query_string"]);
}
searchUrl += "&hl=en&as_sdt=0%2C5&as_ylo=" + year + "&as_yhi=" + year;
searchUrl += "&hl=en&as_vis=1&as_sdt=0%2C5&as_ylo=" + year + "&as_yhi=" + year;
return (
<a href={searchUrl} target="_blank" rel="noreferrer" title={"Recorded " + row["datestamp"]}>
{row["citations"]}
Expand Down

0 comments on commit fa8389a

Please sign in to comment.