replace some el-select with Select component

This commit is contained in:
pa
2026-01-10 20:13:08 +09:00
committed by Natsumi
parent 6e0a3ffc7d
commit fbc3c8d55a
14 changed files with 566 additions and 325 deletions

View File

@@ -62,7 +62,7 @@ const languageNames = import.meta.glob('./*.json', {
});
function getLanguageName(code) {
return languageNames[`./${code}.json`];
return String(languageNames[`./${code}.json`] ?? code);
}
export * from './locales';