Skip to content

Commit 5da718b

Browse files
committed
fix: 修复回复帖子时跳动问题 #233 #231
1 parent 46d4e6e commit 5da718b

4 files changed

Lines changed: 8 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
v1.4.0 版本做出了一些大的调整,同时对 v1.3.x 小版本做了一些整理合并。
2-
3-
- feat: 新增外置按钮:收藏、跳转到收藏夹等 #228
4-
- feat: 在网址按钮数量过多时做出一些 UI 上的兼容性,可在设置中启用新 UI
1+
- fix: 修复回复帖子时跳动问题 #233 #231

entrypoints/components/BasicSettings/MenuAutoexpandreply.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ export default {
1212
emits: ["update:modelValue"],
1313
data() {
1414
return {
15-
autoExpandIntervalId: null // 添加变量存储定时器ID
15+
autoExpandIntervalId: null // 添加变量存储定时器 ID
1616
};
1717
},
1818
methods: {
1919
init() {
20-
$("nav.post-controls .show-replies").each(function () {
20+
$("nav.post-controls .show-replies[aria-pressed='false']").each(function () {
2121
$(this).click();
2222
});
2323
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "linuxdo-scripts",
33
"description": "manifest.json description",
44
"private": true,
5-
"version": "1.4.0",
5+
"version": "1.4.1",
66
"type": "module",
77
"scripts": {
88
"dev": "wxt",

version-log.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.4.1
2+
3+
- fix: 修复回复帖子时跳动问题 #233 #231
4+
15
## 1.4.0
26

37
v1.4.0 版本做出了一些大的调整,同时对 v1.3.x 小版本做了一些整理合并。

0 commit comments

Comments
 (0)