Skip to content

Commit

Permalink
fix/#384 주소 길이가 길 때, '...'으로 생략되게끔 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JinUng41 committed Sep 14, 2024
1 parent 98691c2 commit 34bed5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion KkuMulKum/Source/MeetingInfo/Cell/MeetingPromiseCell.swift
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ extension MeetingPromiseCell {
nameLabel.setText(model.name, style: .body03, color: model.state.nameTextColor)
dateLabel.setText(model.dateText, style: .body06, color: model.state.otherTextColor)
timeLabel.setText(model.timeText, style: .body06, color: model.state.otherTextColor)
placeLabel.setText(model.placeName, style: .body06, color: model.state.otherTextColor)
placeLabel.setText(model.placeName, style: .body06, color: model.state.otherTextColor, isSingleLine: true)
}
}

Expand Down

0 comments on commit 34bed5e

Please sign in to comment.