This commit is contained in:
2024-07-25 01:30:08 +02:00
parent d9755c732c
commit 91cdf15cc1
8 changed files with 13 additions and 8 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build --emptyOutDir",
"build": "pnpm lint && tsc -b && vite build --emptyOutDir",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
@@ -1,6 +1,6 @@
{
"NotFound_user:login": "Benutzer existiert nicht",
"Unauthorized:login": "Ungültige E-Mail oder Passwort",
"Unauthorized_login": "Ungültige E-Mail oder Passwort",
"GuestBook": "Gästebuch",
@@ -1,6 +1,6 @@
{
"NotFound_user:login": "User does not exist",
"Unauthorized:login": "Invalid email or password",
"Unauthorized_login": "Invalid email or password",
"GuestBook": "GuestBook",
@@ -35,6 +35,11 @@ const Login: FC = () => {
e.stopPropagation();
form.handleSubmit();
}}
onKeyDown={(event) => {
if (event.key === 'Tab') {
event.stopPropagation();
}
}}
noValidate
>
<Box sx={{ display: 'grid', gap: 1, padding: 1, minWidth: '100px' }}>
@@ -58,7 +63,7 @@ const Login: FC = () => {
onBlur={field.handleBlur}
onChange={(e) => field.handleChange(e.target.value)}
size="small"
label={t('Erail')}
label={t('Email')}
required
error={field.state.meta.isTouched && field.state.meta.errors.length > 0}
helperText={field.state.meta.isTouched ? field.state.meta.errors.join(',') : ''}