diff --git a/core/src/components/input/input.tsx b/core/src/components/input/input.tsx index 6d55057083..e3e37b545e 100644 --- a/core/src/components/input/input.tsx +++ b/core/src/components/input/input.tsx @@ -357,6 +357,9 @@ export class Input implements ComponentInterface { if (this.clearInput && !this.readonly && !this.disabled && ev) { ev.preventDefault(); ev.stopPropagation(); + + // Attempt to focus input again after pressing clear button + this.setFocus(); } this.value = '';