-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
π :: (#404) λ¬Έμμ΄ λ³κ²½ #405
The head ref may contain hidden characters: "feature/404-\uBAA8\uC9D1\uC758\uB8B0\uC11C-\uC0C1\uC138-\uD544\uB4DC-\uAC12-\uBCC0\uACBD"
π :: (#404) λ¬Έμμ΄ λ³κ²½ #405
Conversation
Walkthroughμ΄ λ³κ²½ μ¬νμ Changes
Possibly related PRs
Suggested reviewers
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? πͺ§ TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
π Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
π Files selected for processing (1)
- feature/recruitment/src/main/java/team/retum/jobis/recruitment/ui/RecruitmentDetailsScreen.kt (2 hunks)
π§° Additional context used
@@ -275,7 +275,7 @@ internal fun Detail( | |||
) | |||
JobisText( | |||
modifier = Modifier.padding(vertical = 4.dp), | |||
text = if (content.isNullOrEmpty() || content == "null") "μμ" else content, | |||
text = if (content.isNullOrEmpty() || content == "null") "-" else content, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
λ°μ΄ν°κ° μλ κ²½μ°μ νμ λ°©μμ΄ μΌκ΄λκ² λ³κ²½λμμ΅λλ€.
λΉ λ°μ΄ν°λ₯Ό νμνλ λ°©μμ "μμ"μμ "-"λ‘ λ³κ²½ν κ²μ μ’μ κ°μ μ λλ€. UIκ° λ κΉλν΄ λ³΄μΌ κ² κ°μ΅λλ€.
νμ§λ§ Detail
κ³Ό PositionDetail
μ»΄ν¬μ λΈ κ°μ ꡬν λ°©μμ΄ μ½κ° λ€λ¦
λλ€:
// Detail composable
if (content.isNullOrEmpty() || content == "null") "-" else content
// PositionDetail composable
if (content.isNullOrEmpty()) "-" else content
PositionDetail
μμλ λ¬Έμμ΄ "null"μ μ²λ¦¬νλ λ‘μ§μ μΆκ°νλ κ²μ΄ μ’μ κ² κ°μ΅λλ€.
λ€μκ³Ό κ°μ΄ μμ νλ κ²μ μ μλ립λλ€:
- text = if (content.isNullOrEmpty()) "-" else content,
+ text = if (content.isNullOrEmpty() || content == "null") "-" else content,
Also applies to: 389-389
κ°μ
λ°μ΄ν°κ° μμ λ 보μ¬μ§λ λ¬Έμμ΄μ λ³κ²½νμμ΅λλ€.
μμ λ΄μ©
ν λ§
Summary by CodeRabbit
RecruitmentDetailsScreen
μμ μ½ν μΈ κ° μκ±°λ λΉμ΄ μμ λ νμλλ ν μ€νΈλ₯Ό "μμ"μμ "-"λ‘ λ³κ²½νμ¬ μ¬μ©μμκ² μ 보 λΆμ‘±μ λ³΄λ€ λͺ νν μ λ¬ν©λλ€.