Browse Source

Remove extra spaces (#13062)

pull/13072/head
ztplz 6 years ago
committed by 诸岳
parent
commit
f27653158d
  1. 2
      components/input/Search.tsx

2
components/input/Search.tsx

@ -69,7 +69,7 @@ export default class Search extends React.Component<SearchProps, any> {
}
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;

Loading…
Cancel
Save