mirror of
https://github.com/nasa/openmct.git
synced 2025-06-05 00:50:49 +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) {
|
} 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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user