Skip to content

Commit 1d93465

Browse files
authored
Merge pull request #370 from GSM-MSG/hotfix/369_resolve_hope_salary_input_app_clash_issue
🔀 :: (#369) - 희망 연봉 인풋 필드 앱 크래시 이슈 해결
2 parents 1f00582 + edf3f0e commit 1d93465

File tree

1 file changed

+3
-6
lines changed
  • presentation/src/main/java/com/sms/presentation/main/ui/fill_out_information/component/workcondition

1 file changed

+3
-6
lines changed

presentation/src/main/java/com/sms/presentation/main/ui/fill_out_information/component/workcondition/WorkConditionComponent.kt

+3-6
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,7 @@ fun WorkConditionComponent(
5555
mutableStateOf(false)
5656
}
5757

58-
isRequired.value =
59-
wantWorkingArea != listOf("") && wantPayroll.value != "" && textFieldChecker(
60-
wantWorkingCondition
61-
)
58+
isRequired.value = wantWorkingArea != listOf("") && wantPayroll.value != "" && textFieldChecker(wantWorkingCondition)
6259

6360
Column(
6461
modifier = Modifier.fillMaxSize(),
@@ -94,10 +91,10 @@ fun WorkConditionComponent(
9491
placeHolder = "희망 연봉 (10,000원 단위)",
9592
maxLines = 1,
9693
keyboardOptions = KeyboardOptions(
97-
keyboardType = KeyboardType.Number,
94+
keyboardType = KeyboardType.NumberPassword,
9895
imeAction = ImeAction.Done
9996
),
100-
setText = if (wantPayroll.value != "") "${wantPayroll.value.toInt()}" else wantPayroll.value,
97+
setText = wantPayroll.value,
10198
onValueChange = { if (it.length < 5) wantPayroll.value = it }
10299
) {
103100
wantPayroll.value = ""

0 commit comments

Comments
 (0)