diff options
Diffstat (limited to 'website/sandbox/learnpianochords/src/Practice.elm')
-rw-r--r-- | website/sandbox/learnpianochords/src/Practice.elm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/website/sandbox/learnpianochords/src/Practice.elm b/website/sandbox/learnpianochords/src/Practice.elm index c0f5ffcfded0..86977859b85b 100644 --- a/website/sandbox/learnpianochords/src/Practice.elm +++ b/website/sandbox/learnpianochords/src/Practice.elm @@ -37,8 +37,8 @@ render model = , isVisible = model.isPaused } , Piano.render - { highlight = model.selectedChord |> Maybe.andThen Theory.notesForChord |> Maybe.withDefault [] - , start = model.firstNote - , end = model.lastNote + { chord = model.selectedChord + , firstNote = model.firstNote + , lastNote = model.lastNote } ] |