Manos Chorianopoulos

add merchant name to MarketAnalysisItemViewCell

......@@ -96,7 +96,8 @@ extension MarketAnalysisItemViewCell {
priceString = String(format: "%.2f", priceFloat).replacingOccurrences(of: ".", with: ",", options: .literal, range: nil)
priceLabel.text = priceString + "€"
subtitleLabel.text = "Έκπτωτικό κουπόνι" // TODO: FIX
// subtitleLabel.text = "Έκπτωτικό κουπόνι"
subtitleLabel.text = item.redeemed_merchant_details?._name ?? ""
// subtitleLabel.text = couponSetData?.short_description ?? ""
// OR
// let htmlText = couponSetData?.inner_text ?? ""
......@@ -141,7 +142,8 @@ extension MarketAnalysisItemViewCell {
priceString = String(format: "%.2f", priceFloat).replacingOccurrences(of: ".", with: ",", options: .literal, range: nil)
priceLabel.text = priceString + "€"
subtitleLabel.text = "Έκπτωτικό κουπόνι"
// subtitleLabel.text = "Έκπτωτικό κουπόνι"
subtitleLabel.text = item.redeemed_merchant_details?._name ?? ""
// subtitleLabel.text = couponSetData?.short_description ?? ""
// OR
// let htmlText = couponSetData?.inner_text ?? ""
......