mirror of
https://github.com/BradNut/awesome-uses
synced 2025-09-08 17:40:31 +00:00
fixes #195
This commit is contained in:
parent
383b20fb0d
commit
209bc1cbb9
1 changed files with 9 additions and 3 deletions
|
|
@ -18,9 +18,15 @@ export default function Person({ person, currentTag }) {
|
||||||
{person.name} {person.emoji}
|
{person.name} {person.emoji}
|
||||||
</a>
|
</a>
|
||||||
</h3>
|
</h3>
|
||||||
<a className="displayLink" href={person.url}>{`${
|
<a
|
||||||
url.host
|
target="_blank"
|
||||||
}${url.pathname.slice(0, url.pathname.lastIndexOf('/'))}`}</a>
|
rel="noopener noreferrer"
|
||||||
|
className="displayLink"
|
||||||
|
href={person.url}
|
||||||
|
>{`${url.host}${url.pathname.slice(
|
||||||
|
0,
|
||||||
|
url.pathname.lastIndexOf('/')
|
||||||
|
)}`}</a>
|
||||||
</header>
|
</header>
|
||||||
<p>{person.description}</p>
|
<p>{person.description}</p>
|
||||||
<Tags>
|
<Tags>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue