Skip to content
This repository was archived by the owner on May 17, 2021. It is now read-only.

Commit 3118e52

Browse files
committed
fix: fix typo in FormInput attributes
1 parent f6dd34d commit 3118e52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/form/form-input.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class FormInput extends React.PureComponent {
8181
value={this.props.value}
8282
className={classnames(styles['form-control'])}
8383
type={this.props.type || 'text'}
84-
{...this.otherInputAttributes} />
84+
{...this.props.otherInputAttributes} />
8585
</div>
8686
);
8787
}

0 commit comments

Comments
 (0)