fix: settings navigation (#1389)

This commit is contained in:
Joaquín Sánchez 2023-01-22 20:53:04 +01:00 committed by GitHub
parent c28c95e36c
commit 85be61a316
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View file

@ -9,6 +9,7 @@ const props = defineProps<{
disabled?: boolean
external?: true
large?: true
match?: boolean
}>()
const router = useRouter()
@ -39,7 +40,7 @@ useCommand({
:to="to"
:external="external"
exact-active-class="text-primary"
:class="disabled ? 'op25 pointer-events-none ' : ''"
:class="disabled ? 'op25 pointer-events-none ' : match ? 'text-primary' : ''"
block w-full group focus:outline-none
:tabindex="disabled ? -1 : null"
@click="to ? $scrollToTop() : undefined"