Fixed: Custom formats with score of 0 showing 1

Closes #5288
pull/5289/head
Mark McDowall 1 year ago
parent 60470b653a
commit b2b9172c92

@ -10,7 +10,7 @@ function formatPreferredWordScore(input, customFormatsLength = 0) {
return score;
}
return customFormatsLength > 0 ? '+1' : '';
return customFormatsLength > 0 ? '+0' : '';
}
export default formatPreferredWordScore;

Loading…
Cancel
Save