Skip to content

Commit

Permalink
Merge pull request #94 from FOR-GRAD/14-커리어
Browse files Browse the repository at this point in the history
Fix: 졸업예정일 null 일때 멘트 추가
  • Loading branch information
kimyujin-com authored Feb 17, 2024
2 parents 9bd7569 + 7b1aed7 commit d1fd9ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/res/layout/fragment_grad_date.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
android:layout_marginStart="57dp"
android:layout_marginTop="17dp"
android:layout_marginEnd="52dp"
android:text="@{String.format(`졸업 예정일 %s`, vm.selectedDate)}"
android:text='@{vm.selectedDate != null ? String.format("졸업 예정일 %s", vm.selectedDate) : "선택해주세요"}'
android:textAppearance="@style/MediumFont.14"
android:textColor="#555555"
app:layout_constraintEnd_toEndOf="@+id/iv_grad_date_card1"
Expand Down Expand Up @@ -116,7 +116,7 @@
style="@style/BoldFont.30"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{String.format(`D - %s`, vm.dday)}"
android:text='@{vm.dday != null ? String.format("D - %s", vm.dday) : "D -"}'
android:textColor="#7D7D7D"
app:layout_constraintBottom_toBottomOf="@+id/iv_grad_date_card2"
app:layout_constraintEnd_toEndOf="@+id/iv_grad_date_card2"
Expand Down

0 comments on commit d1fd9ce

Please sign in to comment.