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 }) },