Remove tooltipClassName from the Field's input

React doesn't want the property on the <input>, so we'll take it off.
pull/21833/head
Travis Ralston 2019-08-21 12:51:16 -06:00
parent 04bb2ed322
commit 6f7bbf958e
1 changed files with 2 additions and 2 deletions

View File

@ -144,7 +144,7 @@ export default class Field extends React.PureComponent {
render() {
const {
element, prefix, onValidate, children, tooltipContent, flagInvalid,
...inputProps} = this.props;
tooltipClassName, ...inputProps} = this.props;
const inputElement = element || "input";
@ -180,7 +180,7 @@ export default class Field extends React.PureComponent {
const Tooltip = sdk.getComponent("elements.Tooltip");
let fieldTooltip;
if (tooltipContent || this.state.feedback) {
const addlClassName = this.props.tooltipClassName ? this.props.tooltipClassName : '';
const addlClassName = tooltipClassName ? tooltipClassName : '';
fieldTooltip = <Tooltip
tooltipClassName={`mx_Field_tooltip ${addlClassName}`}
visible={this.state.feedbackVisible}