Skip to content

Commit

Permalink
Merge pull request #783 from XiaoMi/hotfix/2.5.4
Browse files Browse the repository at this point in the history
fix: fix select checkall
  • Loading branch information
zhan8863 authored Nov 26, 2019
2 parents d40f566 + d942d95 commit f263921
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
- 修复 `<Select />` dataSource 不能根据搜索项动态调整请求参数的问题 [#781](https://github.com/XiaoMi/hiui/issues/781)
- 修复 `<Upload />` 上传文件大小超过 maxSize 限制后,缺少反馈信息的问题 [#764](https://github.com/XiaoMi/hiui/issues/764)
- 修复 `<Cascader />` filterOption 属性不能按预期过滤选项的问题 [#770](https://github.com/XiaoMi/hiui/issues/770)
- 修复 `<Cascader />` value 控制组件显示失效的问题 [#784](https://github.com/XiaoMi/hiui/issues/784)
- 修复 `<DatePicker />` 日期范围选择器选择时间后,面板仅展示日期的问题 [#785](https://github.com/XiaoMi/hiui/issues/785)

## 2.5.3

Expand Down
2 changes: 1 addition & 1 deletion components/select/Select.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ class Select extends Component {
}
}
})
this.onChange(_selectedItems, changedItems)
this.onChange(_selectedItems, changedItems, () => {}, _selectedItems)
this.selectInput.focus()
}

Expand Down
2 changes: 2 additions & 0 deletions docs/zh-CN/components/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
- 修复 `<Select />` dataSource 不能根据搜索项动态调整请求参数的问题 [#781](https://github.com/XiaoMi/hiui/issues/781)
- 修复 `<Upload />` 上传文件大小超过 maxSize 限制后,缺少反馈信息的问题 [#764](https://github.com/XiaoMi/hiui/issues/764)
- 修复 `<Cascader />` filterOption 属性不能按预期过滤选项的问题 [#770](https://github.com/XiaoMi/hiui/issues/770)
- 修复 `<Cascader />` value 控制组件显示失效的问题 [#784](https://github.com/XiaoMi/hiui/issues/784)
- 修复 `<DatePicker />` 日期范围选择器选择时间后,面板仅展示日期的问题 [#785](https://github.com/XiaoMi/hiui/issues/785)

## 2.5.3

Expand Down

0 comments on commit f263921

Please sign in to comment.