Fix duration to milliseconds converter (#5064)

This commit is contained in:
Shefali Joshi 2022-04-14 08:27:38 -07:00 committed by GitHub
parent 2ccb90aa41
commit 1f2102b845
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -229,7 +229,7 @@ export default {
} else if (durationIndex === 1) {
return duration * 60 * 1000;
} else if (durationIndex === 2) {
return duration * 60 * 24 * 1000;
return duration * 60 * 60 * 1000;
}
}
},