Bug Report
- Package version(s): 5.24.0
- Browser and OS versions: all
Priorities and help requested (not applicable if asking question):
Are you willing to submit a PR to fix? (Yes)
Requested priority: Normal
Describe the issue:
In Docs props ITextFieldProps contains attribute "componentId", but in component TextField attribute "componentId" always replaced of the this._id (line 151)
Actual behavior:
const renderProps: ITextFieldProps = { ...this.props, componentId: this._id };
Expected behavior:
let {
componentId = this._id
} = this.props;
const renderProps: ITextFieldProps = { ...this.props, componentId };
If applicable, please provide a codepen repro: