fix: Use label and key for options
All checks were successful
ci/woodpecker/pr/woodpecker Pipeline was successful

This commit is contained in:
Serhii Tereshchenko 2024-05-13 16:13:58 +03:00
parent 042e8c78dc
commit 57beea6a0d

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>