Skip to content

Commit

Permalink
fix: set correct disabled property in <a> tag in SettingsItem
Browse files Browse the repository at this point in the history
  • Loading branch information
shuuji3 committed Apr 6, 2024
1 parent e53f651 commit 371c74d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/settings/SettingsItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ useCommand({

<template>
<NuxtLink
:disabled="disabled"
:disabled="disabled ? 'disabled' : null"
:to="to"
:external="external"
:target="target"
Expand Down

0 comments on commit 371c74d

Please sign in to comment.