Manos Chorianopoulos

fix coupon cell discription

......@@ -63,7 +63,8 @@ import UIKit
// couponImage.load(link: couponSetData?.img_preview ?? "", placeholder: UIImage(), cache: URLCache())
// nameLabel.text = couponSetData?.name ?? ""
dicountLabel.text = (coupon.discount ?? "") + "€"
discriptionLabel.text = couponSetData?.short_description ?? ""
let htmlText = couponSetData?.inner_text ?? ""
discriptionLabel.text = htmlText.htmlToString
expirationLabel.text = "Ισχύει έως "+(coupon.expiration ?? "")
}
......