Skip to content

Commit

Permalink
fix/#357 준비/이동 시작 시간 동일하면 highlight 처리 안되는 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
youz2me committed Sep 4, 2024
1 parent 01c99db commit 97b9e37
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,9 @@ extension ReadyStatusViewController {
"\(readyStartTime)에 준비하고,\n\(owner.viewModel.moveStartTime.value)에 이동을 시작해야 해요",
style: .body03
)

owner.rootView.readyPlanInfoView.readyTimeLabel.setHighlightText(
readyStartTime,
owner.viewModel.moveStartTime.value,
for: [readyStartTime, owner.viewModel.moveStartTime.value],
style: .body03,
color: .maincolor
)
Expand All @@ -181,9 +181,9 @@ extension ReadyStatusViewController {
"\(owner.viewModel.readyStartTime.value)에 준비하고,\n\(moveStartTime)에 이동을 시작해야 해요",
style: .body03
)

owner.rootView.readyPlanInfoView.readyTimeLabel.setHighlightText(
owner.viewModel.readyStartTime.value,
moveStartTime,
for: [owner.viewModel.readyStartTime.value, moveStartTime],
style: .body03,
color: .maincolor
)
Expand Down

0 comments on commit 97b9e37

Please sign in to comment.