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