Skip to content

Commit

Permalink
for #173, allow setting 0 seconds in color picker
Browse files Browse the repository at this point in the history
  • Loading branch information
todbot committed Jul 5, 2022
1 parent f6197a7 commit ff70de0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/gui/blink1ColorPicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ var Blink1ColorPicker = React.createClass({
</table>
<div className="col-sm-4">
time (sec):
<input type="number" className="input" min={0.1} max={10.0} step={0.1} size={3}
<input type="number" className="input" min={0.0} max={10.0} step={0.1} size={3}
value={this.state.secs} onChange={this.handleChangeSecs} />
{deviceCombo}
</div>
Expand Down

0 comments on commit ff70de0

Please sign in to comment.