mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-02-08 03:06:01 +01:00
Fix missing href key
This commit is contained in:
@@ -22,7 +22,7 @@ const { t } = useI18n({
|
|||||||
<HomeLink
|
<HomeLink
|
||||||
v-for="social in socials.sort((a, b) => a.label.localeCompare(b.label))"
|
v-for="social in socials.sort((a, b) => a.label.localeCompare(b.label))"
|
||||||
:key="social.label"
|
:key="social.label"
|
||||||
:to="social.to"
|
:href="social.to"
|
||||||
:icon="social.icon"
|
:icon="social.icon"
|
||||||
:label="social.label"
|
:label="social.label"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
|||||||
@@ -112,7 +112,7 @@ const socialsList = [
|
|||||||
<UButton
|
<UButton
|
||||||
:icon="`i-ph:${nav.icon}`"
|
:icon="`i-ph:${nav.icon}`"
|
||||||
:target="nav.target ? nav.target : '_self'"
|
:target="nav.target ? nav.target : '_self'"
|
||||||
:to="nav.to"
|
:href="nav.to"
|
||||||
:aria-label="nav.label"
|
:aria-label="nav.label"
|
||||||
color="neutral"
|
color="neutral"
|
||||||
size="sm"
|
size="sm"
|
||||||
|
|||||||
Reference in New Issue
Block a user