Browse Source

Add language code to settings footer

Matt Rubens 11 months ago
parent
commit
a9a203a725
1 changed files with 1 additions and 1 deletions
  1. 1 1
      webview-ui/src/components/settings/SettingsFooter.tsx

+ 1 - 1
webview-ui/src/components/settings/SettingsFooter.tsx

@@ -78,7 +78,7 @@ export const SettingsFooter = ({
 						title={LANGUAGES[language]}>
 						{Object.entries(LANGUAGES).map(([code, name]) => (
 							<option key={code} value={code}>
-								{name}
+								{name} ({code})
 							</option>
 						))}
 					</select>