Skip to content

Commit

Permalink
chore: release/1.9.3 (#4062)
Browse files Browse the repository at this point in the history
  • Loading branch information
uyarn committed Mar 29, 2024
1 parent 7cb28e9 commit 455536d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ toc: false
docClass: timeline
---

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

## 🌈 1.9.1 `2024-03-28`
### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tdesign-vue-next",
"purename": "tdesign",
"version": "1.9.2",
"version": "1.9.3",
"title": "tdesign-vue-next",
"description": "TDesign Component for vue-next",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/date-picker/DatePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default defineComponent({
});

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

cacheValue.value = formatDate(dateValue, {
format: formatRef.value.format,
Expand Down

0 comments on commit 455536d

Please sign in to comment.