From 4c780568bc57e13c1561efdcf64171e5b5af20b8 Mon Sep 17 00:00:00 2001 From: Michael Angerman <1809991+stormasm@users.noreply.github.com> Date: Thu, 25 Apr 2024 14:37:47 -0700 Subject: [PATCH] storybook: Fix Backspace in Auto Height Editor and Picker stories (#11011) Currently in the *Auto Height Editor* story the backspace key is not working when you type into the Editor. The same thing is true for the *Picker* story as one is not able to backspace... By adding an entry in the keymap file ```rust assets/keymaps/storybook.json ``` both of these issues are solved... Release Notes: - N/A --- assets/keymaps/storybook.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/assets/keymaps/storybook.json b/assets/keymaps/storybook.json index 117bbde09b..5e375821e0 100644 --- a/assets/keymaps/storybook.json +++ b/assets/keymaps/storybook.json @@ -17,7 +17,11 @@ "cmd-enter": "menu::SecondaryConfirm", "escape": "menu::Cancel", "ctrl-c": "menu::Cancel", - "cmd-q": "storybook::Quit" + "cmd-q": "storybook::Quit", + "backspace": "editor::Backspace", + "delete": "editor::Delete", + "left": "editor::MoveLeft", + "right": "editor::MoveRight" } } ]