We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2322059 commit 9615dd2Copy full SHA for 9615dd2
1 file changed
src/App.js
@@ -203,7 +203,7 @@ const Organization = ({
203
<div>
204
<p>
205
<strong>Issues from Organization:</strong>
206
- {organization.name} ({organization.url})
+ <a href={organization.url}>{organization.name}</a>
207
</p>
208
<Repository
209
repository={organization.repository}
@@ -217,7 +217,7 @@ const Repository = ({ repository, onAddReactionToIssue }) => (
217
218
219
<strong>In Repository:</strong>
220
- {repository.name} ({repository.url})
+ <a href={repository.url}>{repository.name}</a>
221
222
223
<ul>
0 commit comments