This commit is contained in:
syuilo 2023-02-22 15:36:12 +09:00
parent 0fb9c372dd
commit 0c8d874e3a
2 changed files with 2 additions and 2 deletions

View File

@ -200,7 +200,7 @@ export function getNoteMenu(props: {
props.translating.value = true; props.translating.value = true;
const res = await os.api('notes/translate', { const res = await os.api('notes/translate', {
noteId: appearNote.id, noteId: appearNote.id,
targetLang: miLocalStorage.getItem('lang') || navigator.language, targetLang: miLocalStorage.getItem('lang') ?? navigator.language,
}); });
props.translating.value = false; props.translating.value = false;
props.translation.value = res; props.translation.value = res;

View File

@ -1,3 +1,3 @@
export default function(user: { name?: string | null, username: string }): string { export default function(user: { name?: string | null, username: string }): string {
return user.name || user.username; return user.name === '' ? user.username : user.name ?? user.username;
} }