From 7aed2828bb3a146a61416e8cacbb1f83107f4720 Mon Sep 17 00:00:00 2001 From: lyswhut Date: Fri, 16 Jun 2023 11:23:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=B7=BB=E5=8A=A0=E5=8D=95?= =?UTF-8?q?=E9=A6=96=E6=AD=8C=E6=9B=B2=E5=BC=B9=E7=AA=97=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E5=88=9B=E5=BB=BA=E6=8C=89=E9=92=AE=E6=97=A0=E6=B3=95=E5=8F=96?= =?UTF-8?q?=E6=B6=88=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- publish/changeLog.md | 1 + src/renderer/components/common/ListAddModal.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/publish/changeLog.md b/publish/changeLog.md index 572ad326..5d0c1900 100644 --- a/publish/changeLog.md +++ b/publish/changeLog.md @@ -18,6 +18,7 @@ - 修复tx热门评论昵称被错误切割的问题 (#1397, By: @helloplhm-qwq, @Folltoshe) - 修复wy源热搜词失效的问题(#1401, @Folltoshe) - 修复Deepin 20下启用桌面歌词时可能会导致桌面卡死的问题(#1288) +- 修复添加单首歌曲弹窗列表创建按钮无法取消的问题 ### 其他 diff --git a/src/renderer/components/common/ListAddModal.vue b/src/renderer/components/common/ListAddModal.vue index 658772f1..7764752e 100644 --- a/src/renderer/components/common/ListAddModal.vue +++ b/src/renderer/components/common/ListAddModal.vue @@ -172,7 +172,7 @@ export default { handleSaveList(event) { let name = event.target.value this.newListName = event.target.value = '' - // this.isEditing = false + this.isEditing = false if (!name) return createUserList({ name }) },