Skip to content

Commit f85b4ea

Browse files
fix: pass empty options object to navigation constructor (#201)
1 parent 8d5654c commit f85b4ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ function createWorkspace(): Blockly.WorkspaceSvg {
6363
const blocklyDiv = document.getElementById('blocklyDiv')!;
6464
const workspace = Blockly.inject(blocklyDiv, options);
6565

66-
new KeyboardNavigation(workspace);
66+
new KeyboardNavigation(workspace, {});
6767
registerRunCodeShortcut();
6868

6969
// Disable blocks that aren't inside the setup or draw loops.

0 commit comments

Comments
 (0)