Skip to content

Commit 7d3c1c4

Browse files
chore: release 1.13.1 (#3688)
* chore: release 1.13.1 * chore: changelog's changes --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 89b96dd commit 7d3c1c4

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ toc: false
55
docClass: timeline
66
---
77

8+
## 🌈 1.13.1 `2025-08-20`
9+
### 🚀 Features
10+
- `Table`: 新增切换分页后重置滚动条回到顶部的特性 @RSS1102 ([#3684](https://github.com/Tencent/tdesign-vue/pull/3684))
11+
### 🐞 Bug Fixes
12+
- `QRCode`: 修复 `type='svg'``value` 值变化而二维码未刷新的问题 @RSS1102 ([#3681](https://github.com/Tencent/tdesign-vue/pull/3681))
13+
- `Radio`: 修复 `RadioGroup` 组件的告警问题 @uyarn ([#3685](https://github.com/Tencent/tdesign-vue/pull/3685))
14+
15+
816
## 🌈 1.13.0 `2025-08-07`
917
### 🚀 Features
1018
- `QRCode`: 新增 `QRCode` 二维码组件 @Wesley-0808 ([#3652](https://github.com/Tencent/tdesign-vue/pull/3652))

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",
33
"purename": "tdesign",
4-
"version": "1.13.0",
4+
"version": "1.13.1",
55
"description": "tdesign-vue",
66
"title": "tdesign-vue",
77
"keywords": [

src/table/hooks/usePagination.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default function usePagination(
7474

7575
const ref = tableContentRef.value;
7676
if (ref.scrollTo) {
77-
ref.scrollTo({ top: 0, left: 0, behavior: 'smooth' });
77+
ref.scrollTo({ top: 0, left: 0 });
7878
} else {
7979
// 兼容测试环境或旧浏览器
8080
ref.scrollTop = 0;

0 commit comments

Comments
 (0)