From 3271ecf1dec4f9baf238ea94e4047f2c26835b4b Mon Sep 17 00:00:00 2001 From: Sean Perkins Date: Mon, 5 Dec 2022 11:28:52 -0500 Subject: [PATCH] fix(textarea): render icon for clearing input --- core/src/components/input/input.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/src/components/input/input.tsx b/core/src/components/input/input.tsx index 0e3c8f01f2..b341c25396 100644 --- a/core/src/components/input/input.tsx +++ b/core/src/components/input/input.tsx @@ -690,7 +690,9 @@ export class Input implements ComponentInterface { ev.preventDefault(); }} onClick={this.clearTextInput} - /> + > + + )} {shouldRenderHighlight &&
}