update:优化记录

This commit is contained in:
2026-08-25 17:49:44 +08:00
parent 9a06dcf942
commit 2eba5f87d7
3 changed files with 8 additions and 2 deletions
+7 -1
View File
@@ -30,7 +30,13 @@ const getDisplayText = (arrow = {}) => {
const isFailed = (arrow = {}) => {
if (!arrow) return false;
if (props.recordMode && props.trainingType !== "precision") return false;
if (
props.recordMode &&
props.trainingType !== "precision" &&
props.trainingType !== "rhythm"
) {
return false;
}
return arrow.ok !== true;
};