Skip to content
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.

Commit

Permalink
Fixes #411 - Repeat range bug (#425)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmahalwy authored Aug 6, 2016
1 parent a705e29 commit 834de9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Audioplayer/RepeatDropdown/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export default class RepeatButton extends Component {
onChange={(event) => setRepeat({
...repeat,
from: parseInt(event.target.value, 10),
to: parseInt(event.target.value, 10)
to: parseInt(event.target.value, 10) + 3
})}
>
{
Expand Down

0 comments on commit 834de9f

Please sign in to comment.