We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87d75b9 commit d1b2f71Copy full SHA for d1b2f71
src/LiveDevelopment/BrowserScripts/RemoteFunctions.js
@@ -3028,6 +3028,9 @@ function RemoteFunctions(config = {}) {
3028
// Finish editing on Enter (unless Shift is held)
3029
event.preventDefault();
3030
finishEditing(element);
3031
+ } else if ((event.key === " " || event.key === "Spacebar") && element.tagName.toLowerCase() === 'button') {
3032
+ event.preventDefault();
3033
+ document.execCommand("insertText", false, " ");
3034
}
3035
3036
0 commit comments