Skip to content

Commit

Permalink
Merge pull request #110 from yangsubinn/fix/#109
Browse files Browse the repository at this point in the history
[Fix] #109 - 스탬프 등록시 뒤에 이미지가 업로드 되는 모습이 보이지 않도록 수정
  • Loading branch information
yangsubinn authored Jan 12, 2023
2 parents 529a45c + 02516aa commit add7891
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,10 @@ extension ListDetailVC {
}

private func setData(_ model: ListDetailModel) {
if let imageURL = URL(string: model.image) {
self.missionImageView.kf.setImage(with: imageURL)
if self.sceneType != .none {
if let imageURL = URL(string: model.image) {
self.missionImageView.kf.setImage(with: imageURL)
}
}
self.textView.text = model.content
self.dateLabel.text = model.date
Expand Down

0 comments on commit add7891

Please sign in to comment.