From f27653158de9fa347d16b3bcc3b248f44daa64fa Mon Sep 17 00:00:00 2001 From: ztplz Date: Sat, 10 Nov 2018 00:17:02 +0800 Subject: [PATCH] Remove extra spaces (#13062) --- components/input/Search.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/input/Search.tsx b/components/input/Search.tsx index 4c23259f2b..e7206be0b5 100644 --- a/components/input/Search.tsx +++ b/components/input/Search.tsx @@ -69,7 +69,7 @@ export default class Search extends React.Component { } render() { - const { className, prefixCls, inputPrefixCls, size, suffix, enterButton, ...others } = this.props; + const { className, prefixCls, inputPrefixCls, size, suffix, enterButton, ...others } = this.props; delete (others as any).onSearch; const buttonOrIcon = this.getButtonOrIcon(); const searchSuffix = suffix ? [suffix, buttonOrIcon] : buttonOrIcon;