From 8074e42ca524e4a5d2aa5cb3dbbe2c1fa9e68b6e Mon Sep 17 00:00:00 2001 From: cchaiyatad Date: Sat, 18 Nov 2023 18:47:29 +0900 Subject: [PATCH] fix(text-area): fix a textarea with an autosize cursor jump to the end when typing korean --- components/input/ResizableTextArea.tsx | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/components/input/ResizableTextArea.tsx b/components/input/ResizableTextArea.tsx index b9c7a3320c..de34f7d8f1 100644 --- a/components/input/ResizableTextArea.tsx +++ b/components/input/ResizableTextArea.tsx @@ -110,13 +110,7 @@ const ResizableTextArea = defineComponent({ const cls = classNames(prefixCls, attrs.class, { [`${prefixCls}-disabled`]: disabled, }); - const style = [ - attrs.style, - textareaStyles.value, - resizeStatus.value === RESIZE_STATUS_RESIZING - ? { overflowX: 'hidden', overflowY: 'hidden' } - : null, - ]; + const style = [attrs.style, textareaStyles.value]; const textareaProps: any = { ...otherProps, ...attrs,