Skip to content
This repository has been archived by the owner on Jan 4, 2025. It is now read-only.

Commit

Permalink
Fixes #221
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdriscoll committed May 18, 2019
1 parent 55af5f5 commit 079651f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UniversalDashboard.Materialize/Components/ud-input.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export default class Input extends React.Component {
submit = <a href="#!"id={`btn${this.props.id}`} className="btn disabled">{this.props.submitText}</a>;
}

return <div className="card ud-input" key={this.props.id} style={{background: this.props.backgroundColor, color: this.props.fontColor}}>
return <div className="card ud-input" key={this.props.id} id={this.props.id} style={{background: this.props.backgroundColor, color: this.props.fontColor}}>
<div className="card-content" >
<span className="card-title">{this.props.title}</span>
{fields}
Expand Down

0 comments on commit 079651f

Please sign in to comment.