We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1b84e8 commit ff60c34Copy full SHA for ff60c34
1 file changed
client/modules/User/components/NewPasswordForm.tsx
@@ -39,7 +39,9 @@ export function NewPasswordForm(props: { resetPasswordToken: string }) {
39
{...field.input}
40
/>
41
{field.meta.touched && field.meta.error && (
42
- <span className="form-error">{field.meta.error}</span>
+ <span className="form-error" aria-live="polite">
43
+ {field.meta.error}
44
+ </span>
45
)}
46
</p>
47
@@ -59,7 +61,9 @@ export function NewPasswordForm(props: { resetPasswordToken: string }) {
59
61
60
62
63
64
65
66
67
68
69
0 commit comments