Skip to content

Commit 455536d

Browse files
authored
chore: release/1.9.3 (#4062)
1 parent 7cb28e9 commit 455536d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ toc: false
55
docClass: timeline
66
---
77

8-
## 🌈 1.9.2 `2024-03-29`
8+
## 🌈 1.9.3 `2024-03-29`
99
### 🐞 Bug Fixes
1010
- `Form`: 修复`1.9.1`版本的告警问题 @uyarn ([#4060](https://github.com/Tencent/tdesign-vue-next/pull/4060))
1111
- `Loading`: 修复`1.9.1`版本对外暴露 `directive` 使用的告警及命名错误 @uyarn ([#4060](https://github.com/Tencent/tdesign-vue-next/pull/4060))
12+
- `DatePicker`: 修复`1.9.1`版本使用`Date`的异常问题 @uyarn
1213

1314
## 🌈 1.9.1 `2024-03-28`
1415
### 🚀 Features

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tdesign-vue-next",
33
"purename": "tdesign",
4-
"version": "1.9.2",
4+
"version": "1.9.3",
55
"title": "tdesign-vue-next",
66
"description": "TDesign Component for vue-next",
77
"keywords": [

src/date-picker/DatePicker.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export default defineComponent({
6060
});
6161

6262
watch(popupVisible, (visible) => {
63-
const dateValue = covertToDate(value.value as string, formatRef.value?.valueType);
63+
const dateValue = value.value ? covertToDate(value.value as string, formatRef.value?.valueType) : value.value;
6464

6565
cacheValue.value = formatDate(dateValue, {
6666
format: formatRef.value.format,

0 commit comments

Comments
 (0)