diff --git a/semcore/bulk-textarea/src/components/InputField/InputField.tsx b/semcore/bulk-textarea/src/components/InputField/InputField.tsx index 507868881c..61402393bc 100644 --- a/semcore/bulk-textarea/src/components/InputField/InputField.tsx +++ b/semcore/bulk-textarea/src/components/InputField/InputField.tsx @@ -1221,7 +1221,9 @@ class InputField extends Component< private toggleAriaInvalid(showErrors: boolean, errorsLength: number): void { if (showErrors && errorsLength > 0) { - this.textarea.setAttribute('aria-describedby', this.popperDescribedId); + if (this.asProps.commonErrorMessage) { + this.textarea.setAttribute('aria-describedby', this.popperDescribedId); + } this.textarea.setAttribute('aria-invalid', 'true'); } else { this.textarea.removeAttribute('aria-invalid');