mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
fix KNOWN_LANGUAGES option child element (#5118)
This commit is contained in:
parent
e78bb2f866
commit
9d4716f5ad
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ const LanguageSelect: FunctionComponent<{ lang: string }> = ({ lang }) => {
|
||||||
{Object.entries(KNOWN_LANGUAGES).map(([key, value]) => {
|
{Object.entries(KNOWN_LANGUAGES).map(([key, value]) => {
|
||||||
return (
|
return (
|
||||||
<option value={value} key={value}>
|
<option value={value} key={value}>
|
||||||
<span>{key}</span>
|
{key}
|
||||||
</option>
|
</option>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
|
|
Loading…
Reference in a new issue