Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoskolodny committed Oct 30, 2024
1 parent 09de145 commit c3bab03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/text-field-base.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ export const TextFieldBase = React.forwardRef<any, TextFieldBaseProps>(
value,
...(error && {'aria-invalid': true}),
...((helperText || (multiline && maxLength)) && {
'aria-describedby': rightHelperTextid,
'aria-describedby': `${leftHelperTextid} ${rightHelperTextid}`,
}),
...(preventCopy && {
onCopy: preventCopyHandler,
Expand Down

0 comments on commit c3bab03

Please sign in to comment.