Skip to content

Commit

Permalink
Merge pull request #39 from ulitol97/master
Browse files Browse the repository at this point in the history
Fixed bug in outgoing results
  • Loading branch information
ulitol97 authored Mar 3, 2022
2 parents f995a9d + 6295b27 commit 7ec388b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wikishape",
"version": "0.2.2",
"version": "0.2.4",
"private": true,
"dependencies": {
"axios": "^0.21.4",
Expand Down
10 changes: 1 addition & 9 deletions src/utils/Utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,16 +166,8 @@ export function showQualified(qualified, prefixes) {
if (Object.keys(prefixes).includes(qualified.prefix)) {
return (
<>
<a
href={
API.wikidataOutgoingRoute +
"?node=" +
encodeURIComponent(qualified.uri)
}
>
<a href={qualified.uri} target="_blank">
{qualified.str}
</a>
<a href={qualified.uri}>
<ExternalLinkIcon />
</a>
</>
Expand Down

0 comments on commit 7ec388b

Please sign in to comment.