Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
swantzter committed Aug 24, 2024
1 parent d167728 commit 6bd3b9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/scoring/[email protected]/Presentation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ function componentScore (type: Component) {
for (const mark of scoresheet.value?.marks ?? []) {
if (mark.schema === `${type}Plus`) score += CHANGE
else if (mark.schema === `${type}Minus`) score -= CHANGE
else if (mark.schema === `miss`) score -= CHANGE
else if (mark.schema === 'miss') score -= CHANGE
}
score = Math.round(clamp(score, 0, 24))
Expand Down

0 comments on commit 6bd3b9a

Please sign in to comment.