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

Commit 834de9f

Browse files
authored
Fixes #411 - Repeat range bug (#425)
1 parent a705e29 commit 834de9f

File tree

1 file changed

+1
-1
lines changed
  • src/components/Audioplayer/RepeatDropdown

1 file changed

+1
-1
lines changed

src/components/Audioplayer/RepeatDropdown/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default class RepeatButton extends Component {
6868
onChange={(event) => setRepeat({
6969
...repeat,
7070
from: parseInt(event.target.value, 10),
71-
to: parseInt(event.target.value, 10)
71+
to: parseInt(event.target.value, 10) + 3
7272
})}
7373
>
7474
{

0 commit comments

Comments
 (0)