mirror of
https://github.com/nasa/openmct.git
synced 2025-06-19 07:38:15 +00:00
Fix duration to milliseconds converter (#5064)
This commit is contained in:
@ -229,7 +229,7 @@ export default {
|
|||||||
} else if (durationIndex === 1) {
|
} else if (durationIndex === 1) {
|
||||||
return duration * 60 * 1000;
|
return duration * 60 * 1000;
|
||||||
} else if (durationIndex === 2) {
|
} else if (durationIndex === 2) {
|
||||||
return duration * 60 * 24 * 1000;
|
return duration * 60 * 60 * 1000;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user