Skip to content

Commit

Permalink
fix: inoculation detail에서 Nullable 필드에 대한 기본 이름 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
HyungJu committed May 15, 2024
1 parent b862637 commit fc2900e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ class InoculationService(
it.vaccination.vaccineName,
it.inoculationOrderString,
it.agency,
it.lotNumber,
it.vaccineName,
it.vaccineBrandName,
it.lotNumber ?: "로트번호 정보 없음",
it.vaccineName ?: "백신명 정보 없음",
it.vaccineBrandName ?: "제조사 정보 없음",
it.date,
)
}.toList()
Expand Down

0 comments on commit fc2900e

Please sign in to comment.