diff --git a/CHANGELOG.md b/CHANGELOG.md
index 49cfa165d..666860764 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,8 @@
- 修复 `` dataSource 不能根据搜索项动态调整请求参数的问题 [#781](https://github.com/XiaoMi/hiui/issues/781)
- 修复 `` 上传文件大小超过 maxSize 限制后,缺少反馈信息的问题 [#764](https://github.com/XiaoMi/hiui/issues/764)
- 修复 `` filterOption 属性不能按预期过滤选项的问题 [#770](https://github.com/XiaoMi/hiui/issues/770)
+- 修复 `` value 控制组件显示失效的问题 [#784](https://github.com/XiaoMi/hiui/issues/784)
+- 修复 `` 日期范围选择器选择时间后,面板仅展示日期的问题 [#785](https://github.com/XiaoMi/hiui/issues/785)
## 2.5.3
diff --git a/components/select/Select.js b/components/select/Select.js
index 865e40694..48473821d 100644
--- a/components/select/Select.js
+++ b/components/select/Select.js
@@ -234,7 +234,7 @@ class Select extends Component {
}
}
})
- this.onChange(_selectedItems, changedItems)
+ this.onChange(_selectedItems, changedItems, () => {}, _selectedItems)
this.selectInput.focus()
}
diff --git a/docs/zh-CN/components/changelog.mdx b/docs/zh-CN/components/changelog.mdx
index 72bfdf84e..391dcef06 100644
--- a/docs/zh-CN/components/changelog.mdx
+++ b/docs/zh-CN/components/changelog.mdx
@@ -6,6 +6,8 @@
- 修复 `` dataSource 不能根据搜索项动态调整请求参数的问题 [#781](https://github.com/XiaoMi/hiui/issues/781)
- 修复 `` 上传文件大小超过 maxSize 限制后,缺少反馈信息的问题 [#764](https://github.com/XiaoMi/hiui/issues/764)
- 修复 `` filterOption 属性不能按预期过滤选项的问题 [#770](https://github.com/XiaoMi/hiui/issues/770)
+- 修复 `` value 控制组件显示失效的问题 [#784](https://github.com/XiaoMi/hiui/issues/784)
+- 修复 `` 日期范围选择器选择时间后,面板仅展示日期的问题 [#785](https://github.com/XiaoMi/hiui/issues/785)
## 2.5.3