Skip to content

Commit 372a774

Browse files
authored
fix(website): correct external nav link targets (#5028)
The target attributes in the website header were using curly quotes instead of normal ones which made the new tab behavior broken (both links would open in the same new tab).
1 parent 9bdb33a commit 372a774

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

gcp/website/frontend3/src/base.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@
6262
<a href="{{ url_for('frontend_handlers.blog') }}">Blog</a>
6363
</li>
6464
<li class="{{ 'active' if active_section == 'faq' else '' }} page-link external-link">
65-
<a href="https://google.github.io/osv.dev/faq/" target=_blank >FAQ</a>
65+
<a href="https://google.github.io/osv.dev/faq/" target="_blank">FAQ</a>
6666
</li>
6767
<li class="{{ 'active' if active_section == 'docs' else '' }} page-link external-link">
68-
<a href="https://google.github.io/osv.dev/" target=_blank >Docs</a>
68+
<a href="https://google.github.io/osv.dev/" target="_blank">Docs</a>
6969
</li>
7070

7171
<ul class="push social-icons">

0 commit comments

Comments
 (0)