diff --git a/pkg/interface/soto/src/js/components/input.js b/pkg/interface/soto/src/js/components/input.js index 4d07434f69..f2f0079484 100644 --- a/pkg/interface/soto/src/js/components/input.js +++ b/pkg/interface/soto/src/js/components/input.js @@ -39,6 +39,8 @@ export class Input extends Component { else if ((e.key === "Backspace") && (this.props.cursor > 0)) { store.doEdit({ del: this.props.cursor - 1}); return store.setState({ cursor: this.props.cursor - 1}); + } else if (e.key === "Backspace") { + return; } else if (e.key.startsWith("Arrow")) {