From b9d8cd608187515f021c5784212a6fa85f752a44 Mon Sep 17 00:00:00 2001 From: Zach Hall Date: Thu, 9 Apr 2020 09:30:04 -0400 Subject: [PATCH] #1 --- Change `return true` to `return` for Keymaster handler function --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 056be95..5e56d9f 100644 --- a/src/index.js +++ b/src/index.js @@ -23,7 +23,7 @@ export function configure() { eachMethod(this.viewModel, value => { key(value.combo.shortcuts, e => { if (!value.combo.runInsideInputs && !defaultKeymasterFilter(e)) { - return true; + return; } const result = value.call(this.viewModel, e);