修复问题
parent
c12be6a1c8
commit
5aa027f1a9
|
@ -17,7 +17,7 @@ const defaultSetting = {
|
|||
isSavePlayTime: false,
|
||||
audioVisualization: false,
|
||||
waitPlayEndStop: true,
|
||||
waitPlayEndStopTime: 0,
|
||||
waitPlayEndStopTime: '',
|
||||
},
|
||||
desktopLyric: {
|
||||
enable: false,
|
||||
|
|
|
@ -57,7 +57,7 @@ export default {
|
|||
text = ''
|
||||
}
|
||||
time.value = text
|
||||
return orgText == text ? parseInt(text) : ''
|
||||
return text && orgText == text ? parseInt(text) : ''
|
||||
}
|
||||
const handleConfirm = () => {
|
||||
let time = verify()
|
||||
|
|
Loading…
Reference in New Issue