Skip to content

Commit

Permalink
chore: release 1.9.7-naruto (#3221)
Browse files Browse the repository at this point in the history
* fix: fix stackblitz demo run (#3215)

* fix: dialog ssr (#3219)

* chore: release 1.9.7 (#3220)

* chore: release 1.9.7

* chore: changelog's changes

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

---------

Co-authored-by: Zuo <646392141@qq.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Jun 28, 2024
1 parent 5c621ca commit 400c2aa
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ toc: false
docClass: timeline
---

## 🌈 1.9.7 `2024-06-28`
### 🐞 Bug Fixes
- `Dialog`: 修复 `Dialog` 组件在 `SSR` 环境下的使用问题 @qqw78901 ([#3219](https://github.com/Tencent/tdesign-vue/pull/3219))

## 🌈 1.9.6 `2024-06-26`
### 🐞 Bug Fixes
- `Tree`: 修复 `1.9.5` 版本使用拖拽功能的报错问题 @uyarn ([#3212](https://github.com/Tencent/tdesign-vue/pull/3212))
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",
"purename": "tdesign",
"version": "1.9.6-naruto",
"version": "1.9.7-naruto",
"description": "tdesign-vue",
"title": "tdesign-vue",
"keywords": [
Expand Down
6 changes: 3 additions & 3 deletions site/src/components/stackblitz/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ export const styleContent = `
`;

export const stackblitzRc = `
{
"installDependencies": false,
"startCommand": "turbo && turbo dev"
{
"installDependencies": true,
"startCommand": "npm run dev"
}
`;

Expand Down
1 change: 1 addition & 0 deletions src/dialog/dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ export default mixins(ActionMixin, getConfigReceiverMixins<Vue, DialogConfig>('d
watch: {
visible: {
handler(value) {
if (typeof window === 'undefined') return;
if (value) {
this.animationEnd = false;
if ((this.isModal && !this.showInAttachedElement) || this.isFullScreen) {
Expand Down

0 comments on commit 400c2aa

Please sign in to comment.