fix :Primary Password Masking no longer present (#1614)

This commit is contained in:
pa
2026-01-31 22:06:24 +09:00
parent 14558238c5
commit 1c587e17d2
3 changed files with 9 additions and 1 deletions

View File

@@ -258,6 +258,7 @@ export const useAuthStore = defineStore('Auth', () => {
.prompt({
title: t('prompt.primary_password.header'),
description: t('prompt.primary_password.description'),
inputType: 'password',
pattern: /[\s\S]{1,32}/
})
.then(async ({ ok, value }) => {
@@ -390,6 +391,7 @@ export const useAuthStore = defineStore('Auth', () => {
.prompt({
title: t('prompt.primary_password.header'),
description: t('prompt.primary_password.description'),
inputType: 'password',
pattern: /[\s\S]{1,32}/
})
.then(({ ok, value }) => {
@@ -532,6 +534,7 @@ export const useAuthStore = defineStore('Auth', () => {
description: t(
'prompt.primary_password.description'
),
inputType: 'password',
pattern: /[\s\S]{1,32}/
})
.then(async ({ ok, value }) => {