修复添加单首歌曲弹窗列表创建按钮无法取消的问题

pull/1417/head
lyswhut 2023-06-16 11:23:08 +08:00
parent 560445a518
commit 7aed2828bb
2 changed files with 2 additions and 1 deletions

View File

@ -18,6 +18,7 @@
- 修复tx热门评论昵称被错误切割的问题 (#1397, By: @helloplhm-qwq, @Folltoshe) - 修复tx热门评论昵称被错误切割的问题 (#1397, By: @helloplhm-qwq, @Folltoshe)
- 修复wy源热搜词失效的问题#1401, @Folltoshe - 修复wy源热搜词失效的问题#1401, @Folltoshe
- 修复Deepin 20下启用桌面歌词时可能会导致桌面卡死的问题#1288 - 修复Deepin 20下启用桌面歌词时可能会导致桌面卡死的问题#1288
- 修复添加单首歌曲弹窗列表创建按钮无法取消的问题
### 其他 ### 其他

View File

@ -172,7 +172,7 @@ export default {
handleSaveList(event) { handleSaveList(event) {
let name = event.target.value let name = event.target.value
this.newListName = event.target.value = '' this.newListName = event.target.value = ''
// this.isEditing = false this.isEditing = false
if (!name) return if (!name) return
createUserList({ name }) createUserList({ name })
}, },