We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug 描述 Select组件异步类型选项内容消失
参考 重现步骤:
import React from 'react' import Select from '@hi-ui/hiui/es/select' class Demo extends React.Component { constructor () { super() this.state = { value:['1'] } } render () { const {value} = this.state return ( <Select autoload type="multiple" searchable={false} dataSource={{ method: 'GET', key: 'id', url: 'https://mife-gallery.test.mi.com/hiui/stores', transformResponse: (res) => { if(res && res.code === 200){ return res.data } return [] } }} placeholder='请选择' style={{ width: 200 }} onChange={(item) => { console.log('异步单选结果', item) this.setState({ value:item }) }} /> ) } }
预期行为
截屏 第一次打开下拉框
第二次打开下拉框
可重现环境:
附加内容 关于此问题的其它信息。
The text was updated successfully, but these errors were encountered:
fix: #1577 #1578
88af8e3
73baf1d
Merge pull request #1582 from XiaoMi/hotfix/#1578
a1f1f98
Hotfix/#1578
Successfully merging a pull request may close this issue.
Bug 描述
Select组件异步类型选项内容消失
参考
重现步骤:
预期行为
截屏
第一次打开下拉框
第二次打开下拉框
可重现环境:
附加内容
关于此问题的其它信息。
The text was updated successfully, but these errors were encountered: