Skip to content

Commit

Permalink
enhance 1d1f6f5
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Nov 14, 2024
1 parent d1b6799 commit 990585e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG_CHERRYPICK.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Misskey์˜ ์ „์ฒด ๋ณ€๊ฒฝ ์‚ฌํ•ญ์„ ํ™•์ธํ•˜๋ ค๋ฉด, [CHANGELOG.md#2024101](CHANG
### Client
- Enhance: ๋…ธํŠธ ์ž‘์„ฑ ์˜์—ญ์—์„œ ๊ฐ ํ•ญ๋ชฉ์ด ๋” ์ž˜ ๊ตฌ๋ถ„๋˜๋„๋ก ์กฐ์ •ํ•จ
- Enhance: `๋…ธํŠธ ์‚ญ์ œ ์˜ˆ์•ฝ`์ด ์„ค์ •๋œ ๋…ธํŠธ์˜ ๋…ธํŠธ ์‚ญ์ œ ์‹œ๊ฐ„์„ ์•Œ ์ˆ˜ ์žˆ์Œ
- Enhance: ๋กœ๊ทธ์ธ ํ™”๋ฉด์—์„œ `Enter`๋ฅผ ์ž…๋ ฅํ•˜๋ฉด ๋‹ค์Œ ๋‹จ๊ณ„๋กœ ์ด๋™ํ•  ์ˆ˜ ์žˆ์Œ
- Enhance: ๋กœ๊ทธ์ธ ๋ฐ ์ธ์ฆ ํ™”๋ฉด์—์„œ `Enter`๋ฅผ ์ž…๋ ฅํ•˜๋ฉด ๋‹ค์Œ ๋‹จ๊ณ„๋กœ ์ด๋™ํ•  ์ˆ˜ ์žˆ์Œ
- Enhance: ๋กœ๊ทธ์ธ ์•Œ๋ฆผ ๊ฐœ์„ 
- ๋กœ๊ทธ์ธ ์•Œ๋ฆผ์—์„œ ๋กœ๊ทธ์ธ ํ•œ ์žฅ์น˜์˜ `IP`๋ฅผ ํ‘œ์‹œํ•˜๊ณ  ์Šน์ธ๋˜์ง€ ์•Š์€ ๊ธฐ๊ธฐ์— ๋Œ€ํ•œ ๋Œ€์‘ ๋ฐฉ๋ฒ•์ด ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค.
- Enhance: ๋…ธํŠธ ์ƒ์„ธ ํŽ˜์ด์ง€์˜ ๋…ธํŠธ ํ—ค๋”์—์„œ๋„ `ํŽธ์ง‘๋จ`๊ณผ `๋…ธํŠธ ์‚ญ์ œ ์˜ˆ์•ฝ` ์•„์ด์ฝ˜์„ ํ‘œ์‹œํ•จ
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/components/MkPasswordDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template #prefix><i class="ti ti-password"></i></template>
</MkInput>

<MkInput v-if="$i.twoFactorEnabled" v-model="token" type="text" :pattern="isBackupCode ? '^[A-Z0-9]{32}$' :'^[0-9]{6}$'" autocomplete="one-time-code" required :spellcheck="false" :inputmode="isBackupCode ? undefined : 'numeric'">
<MkInput v-if="$i.twoFactorEnabled" v-model="token" type="text" :pattern="isBackupCode ? '^[A-Z0-9]{32}$' :'^[0-9]{6}$'" autocomplete="one-time-code" required :spellcheck="false" :inputmode="isBackupCode ? undefined : 'numeric'" @enter.prevent="done">
<template #label>{{ i18n.ts.token }} ({{ i18n.ts['2fa'] }})</template>
<template #prefix><i v-if="isBackupCode" class="ti ti-key"></i><i v-else class="ti ti-123"></i></template>
<template #caption><button class="_textButton" type="button" @click="isBackupCode = !isBackupCode">{{ isBackupCode ? i18n.ts.useTotp : i18n.ts.useBackupCode }}</button></template>
Expand Down

0 comments on commit 990585e

Please sign in to comment.