Skip to content

Commit 9615dd2

Browse files
committed
use anchor tags for URL
1 parent 2322059 commit 9615dd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/App.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ const Organization = ({
203203
<div>
204204
<p>
205205
<strong>Issues from Organization:</strong>
206-
{organization.name} ({organization.url})
206+
<a href={organization.url}>{organization.name}</a>
207207
</p>
208208
<Repository
209209
repository={organization.repository}
@@ -217,7 +217,7 @@ const Repository = ({ repository, onAddReactionToIssue }) => (
217217
<div>
218218
<p>
219219
<strong>In Repository:</strong>
220-
{repository.name} ({repository.url})
220+
<a href={repository.url}>{repository.name}</a>
221221
</p>
222222

223223
<ul>

0 commit comments

Comments
 (0)