Skip to content

Commit

Permalink
formatted with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
shzcuber committed Nov 9, 2020
1 parent cb3d89c commit 51fa189
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 3 additions & 1 deletion tnoodle-ui/src/main/components/EventPicker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,9 @@ const EventPicker = connect(
}
min={1}
required
disabled={this.props.generatingScrambles}
disabled={
this.props.generatingScrambles
}
/>
</td>
</tr>
Expand Down
9 changes: 7 additions & 2 deletions tnoodle-ui/src/main/components/SideBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,9 @@ const SideBar = connect(
type="button"
className={`btn btn-primary btn-lg btn-block btn-outline-light mb-${this.margin}`}
onClick={this.handleManualSelection}
disabled={this.props.generatingScrambles}
disabled={
this.props.generatingScrambles
}
>
Manual Selection
</button>
Expand All @@ -368,7 +370,10 @@ const SideBar = connect(
<button
type="button"
className="btn btn-primary btn-lg btn-block m-1"
disabled={this.props.generatingScrambles}
disabled={
this.props
.generatingScrambles
}
onClick={(_) =>
this.handleCompetitionSelection(
competition.id
Expand Down

0 comments on commit 51fa189

Please sign in to comment.