@@ -202,7 +202,7 @@ const getActionDur = (key: string) => {
const actions = amMap[getAMKey(props.am)]?.am?.getSupportActions() || [];
const action = actions.find((item) => item.name === key);
if (action?.duration) {
- return Math.floor(action?.duration);
+ return Math.floor(action?.duration * 100) / 100;
}
};
</script>