mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
Fix duration to milliseconds converter (#5064)
This commit is contained in:
parent
2ccb90aa41
commit
1f2102b845
@ -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;
|
||||
}
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user