From 7bbf6d52729d7111c0260348c6b604a07264a692 Mon Sep 17 00:00:00 2001 From: tangjinzhou <415800467@qq.com> Date: Tue, 19 Apr 2022 11:28:21 +0800 Subject: [PATCH] fix: remove valueModifiers --- components/input/Input.tsx | 1 + components/input/ResizableTextArea.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/components/input/Input.tsx b/components/input/Input.tsx index 23a14541d..5f2d9ee8e 100644 --- a/components/input/Input.tsx +++ b/components/input/Input.tsx @@ -282,6 +282,7 @@ export default defineComponent({ 'htmlSize', 'lazy', 'showCount', + 'valueModifiers', ]); const inputProps = { ...otherProps, diff --git a/components/input/ResizableTextArea.tsx b/components/input/ResizableTextArea.tsx index 49e6b16e1..d50444a51 100644 --- a/components/input/ResizableTextArea.tsx +++ b/components/input/ResizableTextArea.tsx @@ -106,6 +106,7 @@ const ResizableTextArea = defineComponent({ 'type', 'lazy', 'maxlength', + 'valueModifiers', ]); const cls = classNames(prefixCls, attrs.class, { [`${prefixCls}-disabled`]: disabled,