具有自动完成功能的Ant设计表单项高度太大

时间:2018-03-24 21:46:39

标签: forms reactjs antd

为什么表单项高度如此之大,这里是表单项和屏幕截图:

        <Form.Item>
          { getFieldDecorator('country', {
                  rules: [{ required: true, message: 'Please select country!' }]
              })(
                <AutoComplete
                    dataSource={["India", "USA"]}
                    placeholder="Country"
                    filterOption={(inputValue, option) =>
                        option.props.children.toUpperCase().indexOf(inputValue.toUpperCase()) !== -1}
                 />
            )
          }
        </Form.Item>

enter image description here

0 个答案:

没有答案