diff --git a/web/ASC.Web.Components/src/components/text-input/index.js b/web/ASC.Web.Components/src/components/text-input/index.js index a0a4839ef1..862e725778 100755 --- a/web/ASC.Web.Components/src/components/text-input/index.js +++ b/web/ASC.Web.Components/src/components/text-input/index.js @@ -100,10 +100,11 @@ class TextInput extends React.Component { render() { // console.log(`TextInput render id=${this.props.id}`); - const {scale, size, errorMessage, errorColor} = this.props; + const {scale, size, errorMessage, errorColor, hasError} = this.props; return ( <> + {hasError ? + : null} ); } }