Skip to content

Commit

Permalink
🐛 Fix logo href tag
Browse files Browse the repository at this point in the history
  • Loading branch information
AnandChowdhary committed Oct 14, 2020
1 parent 37d71eb commit 0678ec5
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/components/Nav.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
<div class="container">
{#if config['status-website'] && config['status-website'].logoUrl}
<div>
<a href={`${config['status-website'].logoHref} || "/"`} class="logo">
<a href={config['status-website'].logoHref || '/'} class="logo">
<img alt="" src={config['status-website'].logoUrl} />
<div>{config['status-website'].name}</div>
</a>
Expand All @@ -70,9 +70,7 @@
</a>
</li>
<li>
<a href={`https://github.com/${config.owner}/${config.repo}`}>
{config.i18n.navGitHub}
</a>
<a href={`https://github.com/${config.owner}/${config.repo}`}> {config.i18n.navGitHub} </a>
</li>
</ul>
</div>
Expand Down

0 comments on commit 0678ec5

Please sign in to comment.