Skip to content

Commit

Permalink
Fix NaN ratios on the virtual keyboard
Browse files Browse the repository at this point in the history
  • Loading branch information
frostburn committed Apr 19, 2024
1 parent 0357630 commit 3c4b1e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scale-workshop",
"version": "3.0.0-beta.15",
"version": "3.0.0-beta.16",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
Expand Down
2 changes: 1 addition & 1 deletion src/views/VirtualKeyboardView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ type NoteOnCallback = (index: number) => NoteOff
:colorMap="scale.colorForIndex"
:noteOn="noteOn"
:heldNotes="state.heldNotes"
:baseFrequency="scale.baseFrequency"
:baseFrequency="scale.scale.baseFrequency"
:frequencies="scale.frequencies"
:centss="scale.centss"
:labelMap="scale.labelForIndex"
Expand Down

0 comments on commit 3c4b1e3

Please sign in to comment.