diff options
Diffstat (limited to 'website/sandbox/chord-drill-sergeant/src/Main.elm')
-rw-r--r-- | website/sandbox/chord-drill-sergeant/src/Main.elm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/sandbox/chord-drill-sergeant/src/Main.elm b/website/sandbox/chord-drill-sergeant/src/Main.elm index 8878a7ceecf1..2fd557522fbb 100644 --- a/website/sandbox/chord-drill-sergeant/src/Main.elm +++ b/website/sandbox/chord-drill-sergeant/src/Main.elm @@ -87,7 +87,7 @@ view : State -> Html Msg view (State {selectedChord}) = div [] [ p [] [ text (viewChord selectedChord) ] , button [ onClick NextChord ] [ text "Next Chord" ] - , Piano.render { highlight = [] } + , Piano.render { highlight = Theory.notesForChord selectedChord } ] {-| For now, I'm just dumping things onto the page to sketch ideas. -} |