Skip to content

Commit a72a35e

Browse files
author
sheepzh
committed
Change the process threshold of translations
1 parent 6b4a720 commit a72a35e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/components/help-us/progress-list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function convert2Info(translationStatus: TranslationStatusInfo): ProgressInfo {
6262
function computeType(progress: number): 'success' | '' | 'warning' {
6363
if (progress >= 95) {
6464
return "success"
65-
} else if (progress >= 80) {
65+
} else if (progress >= 50) {
6666
return ""
6767
} else {
6868
return "warning"

0 commit comments

Comments
 (0)