Skip to content

Commit ebf87d5

Browse files
authored
πŸ”— :: (#389) ν•„μˆ˜ 성적 λ¬Έμžμ—΄ μΆ”κ°€
2 parents 5977c38 + fea9d29 commit ebf87d5

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

β€Žfeature/recruitment/src/main/java/team/retum/jobis/recruitment/ui/RecruitmentDetailsScreen.ktβ€Ž

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,13 @@ private fun RecruitmentDetailInfo(
233233
)
234234
Detail(
235235
title = stringResource(id = R.string.required_grade),
236-
content = requiredGrade.toString(),
236+
content = requiredGrade.toString() + if (requiredGrade != null) {
237+
stringResource(
238+
id = R.string.percent_grade,
239+
)
240+
} else {
241+
""
242+
},
237243
)
238244
Detail(
239245
title = stringResource(id = R.string.work_hours),

β€Žfeature/recruitment/src/main/res/values/strings.xmlβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<string name="certificate">자격증</string>
2121
<string name="recruitment_procedure">μ±„μš©μ ˆμ°¨</string>
2222
<string name="required_grade">ν•„μˆ˜ 성적</string>
23+
<string name="percent_grade">% 이내</string>
2324
<string name="work_hours">κ·Όλ¬΄μ‹œκ°„</string>
2425
<string name="wage_and_benefits">볡리후생</string>
2526
<string name="submission_document">제좜 μ„œλ₯˜</string>

0 commit comments

Comments
Β (0)