Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix poker card error #63

Merged
merged 1 commit into from
Jun 25, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class PokerEmitter extends React.Component {
let owner_button = this.renderOwnerButton();
let input_disable = this.is_disabled();
return(
<form ref='play_card' onSubmit={this._onSubmit.bind(this)}>
<form onSubmit={this._onSubmit.bind(this)}>
<div className="row col-sm-8 poker-emitter form-inline from-control">
<div className="col-md-4">
<div className="input-group-lg">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class SubjectPopup extends React.Component {
<div className="modal-dialog" role="document">
<div className="modal-content">
<div className="modal-body">
<input type="text" className="form-control" id="subject" name="topic" placeholder='...' autofocus="autofocus" onChange={this._onChange.bind(this)} value={this.state.topic} />
<input type="text" className="form-control" id="subject" name="topic" placeholder='...' autoFocus="autofocus" onChange={this._onChange.bind(this)} value={this.state.topic} />
</div>
<div className="modal-footer">
<button type="button" className="btn btn-default" data-dismiss="modal">Close</button>
Expand Down
Loading