fix: Use label and key for options

This commit is contained in:
Serhii Tereshchenko 2024-05-13 16:13:58 +03:00
parent 042e8c78dc
commit 57beea6a0d
1 changed files with 2 additions and 2 deletions

View File

@ -209,10 +209,10 @@
>
<option
v-for="language in postLanguageOptions"
:key="language.value"
:key="language.key"
:value="language.value"
>
{{ language.value }}
{{ language.label }}
</option>
</Select>
</div>