Skip to content

Commit

Permalink
Fix switching var being used incorrectly in the LocaleChanger template
Browse files Browse the repository at this point in the history
  • Loading branch information
brawaru committed Jun 18, 2024
1 parent 6b70b28 commit 3c8ac0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/docs/components/content/LocaleChanger.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const activeLocale = computed({
<div>
<label>
Locale:
<select v-model="activeLocale" :disabled="switching.value">
<select v-model="activeLocale" :disabled="switching">
<option v-for="locale in vintl.availableLocales" :key="locale.tag">
{{ locale.tag }}
</option>
Expand Down

0 comments on commit 3c8ac0e

Please sign in to comment.